Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/session
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-16 18:34:33 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-16 18:34:33 (GMT)
commita963c330780da5053c5030bde17138ed2a28d0cb (patch)
tree1f57ee458049c385f06002fb429e609c4ede4b44 /shell/session
parent7dddefe22902fd671fdcac19da83aa7c6874b065 (diff)
Change emulator resolution to 800x600.
Change canvas resolution to 1200x900, scale it down in the emulator.
Diffstat (limited to 'shell/session')
-rw-r--r--shell/session/Emulator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/session/Emulator.py b/shell/session/Emulator.py
index 1e7bced..c18d92e 100644
--- a/shell/session/Emulator.py
+++ b/shell/session/Emulator.py
@@ -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):