X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a15fb97d2595fd6dedca2f97ca8b875cd789e730..2e3af63fd26317787d16f2fd7401bba1e36db574:/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index f46b11c2..4043f602 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -103,7 +103,9 @@ class VideoWizard(WizardLanguage): print "inputSelect:", port modeList = self.hw.getModeList(self.selection) print "modeList:", modeList - self.hw.setMode(port = port, mode = modeList[0][0], rate = modeList[0][1][0]) + self.port = port + ratesList = self.listRates(modeList[0][0]) + self.hw.setMode(port = port, mode = modeList[0][0], rate = ratesList[0][0]) def listModes(self): list = [] @@ -137,6 +139,11 @@ class VideoWizard(WizardLanguage): print mode if mode[0] == querymode: for rate in mode[1]: + if self.port == "DVI-PC": + print "rate:", rate + if rate == "640x480": + list.insert(0, (rate, rate)) + continue list.append((rate, rate)) return list @@ -164,9 +171,9 @@ class VideoWizard(WizardLanguage): def keyNumberGlobal(self, number): if number in [1,2,3]: if number == 1: - self.hw.saveMode("DVI", "720p", "multi") + self.hw.saveMode("DVI-TV", "720p", "multi") elif number == 2: - self.hw.saveMode("DVI", "1080i", "multi") + self.hw.saveMode("DVI-TV", "1080i", "multi") elif number == 3: self.hw.saveMode("Scart", "Multi", "multi") self.hw.setConfiguredMode()