From c1c5a78ca8d653fd2e65d5990239318f49a32b7a Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 31 Jan 2007 16:49:56 +0000 Subject: Try harder to support wide screen --- (limited to 'sugar-emulator') diff --git a/sugar-emulator b/sugar-emulator index aa620af..2e186a2 100755 --- a/sugar-emulator +++ b/sugar-emulator @@ -78,12 +78,16 @@ if len(sys.argv) == 1: else: program = sys.argv[1] -fullscreen = (gtk.gdk.screen_width() <= 1200 or - gtk.gdk.screen_height() <= 900) and \ - (gtk.gdk.screen_width() / 4 * 3 == - gtk.gdk.screen_height()) +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) +else: + fullscreen = False + width = gtk.gdk.screen_width() - 50 + height = width / 4 * 3 -emulator = Emulator(fullscreen) +emulator = Emulator(width, height, fullscreen) emulator.start() os.execlp('dbus-launch', 'dbus-launch', '--exit-with-session', program) -- cgit v0.9.1