Remove hacks for wide screens, now we support them.
This commit is contained in:
parent
7cfeb76d4a
commit
97e64751cc
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user