Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsugar-emulator3
1 files changed, 2 insertions, 1 deletions
diff --git a/sugar-emulator b/sugar-emulator
index 944b607..76fccdb 100755
--- a/sugar-emulator
+++ b/sugar-emulator
@@ -59,7 +59,8 @@ def _start_xephyr(width, height, dpi):
cmd.append('-ac')
if width > 0 and height > 0:
- cmd.append('-screen %dx%d' % (width, height))
+ cmd.append('-screen')
+ cmd.append('%dx%d' % (width, height))
else:
cmd.append('-fullscreen')