X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5b1ffb7f189a2ebf1389595fe2e33ef816805480..924b11457b3276c94631707fc66419b8db6d5cb8:/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml diff --git a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml index df040868..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"])