Change emulator resolution to 800x600.

Change canvas resolution to 1200x900, scale it down in the emulator.
This commit is contained in:
Marco Pesenti Gritti
2006-08-16 20:34:33 +02:00
parent 7dddefe229
commit a963c33078
2 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ def get_display_number():
class XephyrProcess(Process):
def __init__(self):
self._display = get_display_number()
cmd = 'Xephyr :%d -ac -screen 640x480' % (self._display)
cmd = 'Xephyr :%d -ac -screen 800x600' % (self._display)
Process.__init__(self, cmd)
def get_name(self):
@@ -43,7 +43,7 @@ class XephyrProcess(Process):
class XnestProcess(Process):
def __init__(self):
self._display = get_display_number()
cmd = 'Xnest :%d -ac -geometry 693x520' % (self._display)
cmd = 'Xnest :%d -ac -geometry 800x600' % (self._display)
Process.__init__(self, cmd)
def get_name(self):