aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-02 20:56:56 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-02 20:56:56 +0000
commitbfb6b4765a85a65047655ad4282756ca31229c3e (patch)
tree7cb73f595fb9b2a3454d7d6950454199b3080123 /lib/python/Plugins/SystemPlugins/Videomode
parentc3a4f93b11133f6d2512bf6b240111dc98c53511 (diff)
downloadenigma2-bfb6b4765a85a65047655ad4282756ca31229c3e.tar.gz
enigma2-bfb6b4765a85a65047655ad4282756ca31229c3e.zip
restore video mode to prev valid mode, when change to another mode was not
ok
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/plugin.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
index eb58568e..b51cc08d 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
@@ -108,6 +108,9 @@ class VideoSetup(Screen, ConfigListScreen):
def confirm(self, confirmed):
if not confirmed:
+ config.av.videoport.value = self.last_good[0]
+ config.av.videomode[self.last_good[0]].value = self.last_good[1]
+ config.av.videorate[self.last_good[1]].value = self.last_good[2]
self.hw.setMode(*self.last_good)
else:
self.keySave()
@@ -121,8 +124,11 @@ class VideoSetup(Screen, ConfigListScreen):
def apply(self):
port = config.av.videoport.value
mode = config.av.videomode[port].value
- rate = config.av.videorate[mode].value
+ rate =config.av.videorate[mode].value
if (port, mode, rate) != self.last_good:
+ config.av.videoport.value = self.last_good[0]
+ config.av.videomode[port].value = self.last_good[1]
+ config.av.videorate[mode].value = self.last_good[2]
self.hw.setMode(port, mode, rate)
from Screens.MessageBox import MessageBox
self.session.openWithCallback(self.confirm, MessageBox, "Is this videomode ok?", MessageBox.TYPE_YESNO, timeout = 20, default = False)