X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/9c07bd8592acaee302ac0760d7c0f9da0e2393db..327ae996e0a3a685dff1663f600493e103adb098:/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 c3cbabe4..8426f249 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml +++ b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml @@ -31,7 +31,7 @@ self["portpic"].hide() -self.condition = (self.port != "DVI") +self.condition = (self.port != "DVI" or self.mode == "PC") @@ -49,7 +49,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -65,7 +65,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -87,7 +87,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -102,7 +102,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC")