Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-emulator
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-03-17 09:37:15 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-03-17 09:37:15 (GMT)
commitad0621fa8235cdf10a651da57b63ec062ea4135b (patch)
tree175807b283f02784dc06833e8fbecae5b96c6f3f /sugar-emulator
parentbcec19eb1d013d11a12000001a49261748aacdfe (diff)
Fix the emulator. Patch by Noah Kantrowitz.
Diffstat (limited to 'sugar-emulator')
-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')