diff --git a/sugar-emulator b/sugar-emulator index 15674588..a163fce9 100755 --- a/sugar-emulator +++ b/sugar-emulator @@ -42,16 +42,14 @@ if len(sys.argv) == 1: else: program = sys.argv[1] -# Various things in sugar currently depend on the screen size being in -# a width:height porportion of 4:3. -width = height = -1 -if gtk.gdk.screen_width() / 4 * 3 == gtk.gdk.screen_height(): - fullscreen = (gtk.gdk.screen_width() <= 1200 or - gtk.gdk.screen_height() <= 900) +if gtk.gdk.screen_width() < 1200 or gtk.gdk.screen_height() < 900: + fullscreen = True + width = -1 + height = -1 else: fullscreen = False - height = min(900, gtk.gdk.screen_height() - 50) - width = height * 4 / 3 + width = 1200 + height = 900 emulator = Emulator(width, height, fullscreen) emulator.start()