X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/327ae996e0a3a685dff1663f600493e103adb098..924b11457b3276c94631707fc66419b8db6d5cb8:/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml?ds=sidebyside diff --git a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml index 8426f249..48a5ad00 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml +++ b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml @@ -49,7 +49,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI" and self.mode != "PC") +self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"]) @@ -65,7 +65,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI" and self.mode != "PC") +self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"]) @@ -87,7 +87,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI" and self.mode != "PC") +self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"]) @@ -102,7 +102,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI" and self.mode != "PC") +self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"]) @@ -119,6 +119,8 @@ self.rateSelect("50Hz") self.hw.saveMode(self.port, self.mode, self.rate) +from Components.config import configfile +configfile.save()