aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:53:10 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:53:10 +0100
commit7c30efab7f3c66c8cf259d6926d4ed1312cb456c (patch)
treef4d86f18000b37c1c0eb2ff7001486c379f2033c /lib/python/Plugins
parent9a387d949dc2188928fbc19e6cf73da0041dd102 (diff)
downloadenigma2-7c30efab7f3c66c8cf259d6926d4ed1312cb456c.tar.gz
enigma2-7c30efab7f3c66c8cf259d6926d4ed1312cb456c.zip
save multi framerate even to configfile
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index 49b5d53d..512bcec3 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -132,6 +132,7 @@ class VideoWizard(WizardLanguage, Rc):
ratesList = self.listRates(mode)
print "ratesList:", ratesList
if self.port == "DVI" and mode in ("720p", "1080i"):
+ self.rate = "multi"
self.hw.setMode(port = self.port, mode = mode, rate = "multi")
else:
self.hw.setMode(port = self.port, mode = mode, rate = ratesList[0][0])