Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-11-13 15:28:18 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-11-13 15:28:18 (GMT)
commit9d28557bbdcde4f4a2eab952ae7cad692e72e648 (patch)
tree444588df9f055bdc775aff14062d6172bb8b44ac /shell
parentc210b7720b46134a1d2539387fe3fcdf0b4082ab (diff)
Fix randr
Diffstat (limited to 'shell')
-rw-r--r--shell/view/keyhandler.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/view/keyhandler.py b/shell/view/keyhandler.py
index cb572f4..b07f46c 100644
--- a/shell/view/keyhandler.py
+++ b/shell/view/keyhandler.py
@@ -17,9 +17,9 @@
import os
import signal
import logging
+import subprocess
import dbus
-import gobject
import gtk
from hardware import hardwaremanager
@@ -197,8 +197,7 @@ class KeyHandler(object):
if self._screen_rotation == len(states):
self._screen_rotation = 0
- gobject.spawn_async(['xrandr', '-o', states[self._screen_rotation]],
- flags=gobject.SPAWN_SEARCH_PATH)
+ subprocess.Popen(['xrandr', '-o', states[self._screen_rotation]])
def handle_quit_emulator(self):
if os.environ.has_key('SUGAR_EMULATOR_PID'):