Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-01-16 00:21:15 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-16 00:21:15 (GMT)
commit0584ac7529197e5a9fe34175ebf3d3af80e9f54f (patch)
treeaa0dc78613fbc98bce45c5a6609d465e4906ce6d /sugar
parent31ce0dbf69fff0cb58e8a3b59791938cd28de197 (diff)
Use fullscreen if the screen is not big enough to do a 1200x900 window.
The logic might need tweaking.
Diffstat (limited to 'sugar')
-rw-r--r--sugar/emulator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/emulator.py b/sugar/emulator.py
index 3698672..664e379 100644
--- a/sugar/emulator.py
+++ b/sugar/emulator.py
@@ -84,7 +84,7 @@ class XephyrProcess(Process):
if fullscreen:
cmd += '-fullscreen '
else:
- cmd += '-screen 800x600 '
+ cmd += '-screen 1200x900'
Process.__init__(self, cmd)
def get_name(self):