From 97e64751cccc3f31dedbd184afc049daf0301afc Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 23 Feb 2007 14:45:54 +0000 Subject: Remove hacks for wide screens, now we support them. --- (limited to 'sugar-emulator') diff --git a/sugar-emulator b/sugar-emulator index 1567458..a163fce 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() -- cgit v0.9.1