From b473b4f17cd65115fc4fadd8a71d30fef5066cb5 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 28 Feb 2007 12:24:47 +0000 Subject: Pass the X dpi to Xephyr. Default to a minimum of 96, some distros appear to be broken. --- (limited to 'sugar-emulator') diff --git a/sugar-emulator b/sugar-emulator index a163fce..f951649 100755 --- a/sugar-emulator +++ b/sugar-emulator @@ -36,6 +36,7 @@ else: from sugar import env from sugar import util from sugar.emulator import Emulator +import _sugar if len(sys.argv) == 1: program = 'sugar-shell' @@ -51,7 +52,9 @@ else: width = 1200 height = 900 -emulator = Emulator(width, height, fullscreen) +dpi = min(_sugar.get_screen_dpi(), 96) + +emulator = Emulator(width, height, fullscreen, dpi) emulator.start() if sourcedir: -- cgit v0.9.1