diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-30 11:13:52 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-30 11:13:52 +0100 |
| commit | b0332cff6d1120f3b84696ce6b33a185bcda88e9 (patch) | |
| tree | a9737f8c0326ecd4828eb54d35e10e1739feb025 /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | |
| parent | 5a02c1ec2dd264366daf9988e436196241b6472d (diff) | |
| parent | df11647105be3033f3f6222ed83f69b0a1c3c3df (diff) | |
| download | enigma2-b0332cff6d1120f3b84696ce6b33a185bcda88e9.tar.gz enigma2-b0332cff6d1120f3b84696ce6b33a185bcda88e9.zip | |
Merge branch 'bug_262_no_more_ask_50hz' into experimental
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index cd1529aa..49b5d53d 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -131,8 +131,11 @@ class VideoWizard(WizardLanguage, Rc): def modeSelect(self, mode): ratesList = self.listRates(mode) print "ratesList:", ratesList - self.hw.setMode(port = self.port, mode = mode, rate = ratesList[0][0]) - + if self.port == "DVI" and mode in ("720p", "1080i"): + self.hw.setMode(port = self.port, mode = mode, rate = "multi") + else: + self.hw.setMode(port = self.port, mode = mode, rate = ratesList[0][0]) + def listRates(self, querymode = None): if querymode is None: querymode = self.mode |
