aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-05-01 16:58:12 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-05-01 16:58:12 +0000
commit327ae996e0a3a685dff1663f600493e103adb098 (patch)
tree9ee5bb6216761af2850b893a5d0077efe9610d2e /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
parent9c07bd8592acaee302ac0760d7c0f9da0e2393db (diff)
downloadenigma2-327ae996e0a3a685dff1663f600493e103adb098.tar.gz
enigma2-327ae996e0a3a685dff1663f600493e103adb098.zip
reenable PC mode video selection for dvi ports in the video wizard
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index f7763893..f46b11c2 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -109,7 +109,7 @@ class VideoWizard(WizardLanguage):
list = []
print "modes for port", self.port
for mode in self.hw.getModeList(self.port):
- if mode[0] != "PC":
+ #if mode[0] != "PC":
list.append((mode[0], mode[0]))
print "modeslist:", list
return list