Fix randr

This commit is contained in:
Marco Pesenti Gritti
2007-11-13 16:28:18 +01:00
parent c210b7720b
commit 9d28557bbd
2 changed files with 3 additions and 3 deletions
+2 -3
View File
@@ -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'):