From ad0621fa8235cdf10a651da57b63ec062ea4135b Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 17 Mar 2007 10:37:15 +0100 Subject: [PATCH] Fix the emulator. Patch by Noah Kantrowitz. --- sugar-emulator | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sugar-emulator b/sugar-emulator index 944b607b..76fccdbd 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')