From 1cce2c71400ef889b9d756c2077cca6e50929c76 Mon Sep 17 00:00:00 2001 From: Dipankar Patro Date: Mon, 27 Sep 2010 23:35:35 +0000 Subject: Run Sugar-Emulator in fullscreen by default if the screen is <=800x600 (SL #2180) Previously some bottom part of sugar emulator window was pushed out of viewing area at 800x600 system resolution. The patch opens Sugar-emulator in fullscreen mode by default for resolutions <= 800x600 to avoid the above mentioned situation. Acked-By: Tomeu Vizoso --- diff --git a/src/jarabe/util/emulator.py b/src/jarabe/util/emulator.py index 6a43044..cc112c9 100644 --- a/src/jarabe/util/emulator.py +++ b/src/jarabe/util/emulator.py @@ -42,7 +42,7 @@ def _run_xephyr(display, dpi, dimensions, fullscreen): screen_size = (gtk.gdk.screen_width(), gtk.gdk.screen_height()) if (not dimensions) and (fullscreen is None) and \ - (screen_size < default_dimensions) : + (screen_size <= default_dimensions) : # no forced settings, screen too small => fit screen fullscreen = True elif (not dimensions) : -- cgit v0.9.1