aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-05-23 17:30:46 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-05-23 17:30:46 +0000
commit924b11457b3276c94631707fc66419b8db6d5cb8 (patch)
tree41aadafa1f460cf6ad7229e5ab2364354ee76365 /lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
parent5b1ffb7f189a2ebf1389595fe2e33ef816805480 (diff)
downloadenigma2-924b11457b3276c94631707fc66419b8db6d5cb8.tar.gz
enigma2-924b11457b3276c94631707fc66419b8db6d5cb8.zip
cleanup PC Modes
add 480p and 576p to DVI and YPbPr
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml8
1 files changed, 4 insertions, 4 deletions
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()
</step>
<step id="dvirateintroduction" nextstep="dvirateselection">
<condition>
-self.condition = (self.port == "DVI" and self.mode != "PC")
+self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"])
</condition>
<text value="We will now test if your TV can also display this resolution at 50hz. If your screen goes black, wait 20 seconds and it will switch back to 60hz.\nPlease press OK to begin." />
<displaytext value="Please follow the instructions on the TV" />
@@ -65,7 +65,7 @@ self.rateSelect("60Hz")
</step>
<step id="dvirateselection" timeout="10" timeoutaction="changestep" timeoutstep="notworking50Hz">
<condition>
-self.condition = (self.port == "DVI" and self.mode != "PC")
+self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"])
</condition>
<text value="If you can see this page, please press OK." />
<displaytext value="" />
@@ -87,7 +87,7 @@ self.rateSelect("60Hz")
</step>
<step id="notworking50Hz" nextstep="end">
<condition>
-self.condition = (self.port == "DVI" and self.mode != "PC")
+self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"])
</condition>
<text value="No 50 Hz, sorry. :(" />
<displaytext value="" />
@@ -102,7 +102,7 @@ self["rc"].startMoving()
</step>
<step id="working50Hz" nextstep="end" timeout="10" timeoutaction="nextstep">
<condition>
-self.condition = (self.port == "DVI" and self.mode != "PC")
+self.condition = (self.port == "DVI" and self.mode in ["720p", "1080i"])
</condition>
<text value="Your TV works with 50 Hz. Good!" />
<displaytext value="" />