aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-02-11 14:23:40 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-02-11 14:23:40 +0000
commit359c44f6b67d705044412f527448fda2800d34bf (patch)
tree87da08a81a25ef7189c13442ed67384649ba5097 /lib/python/Plugins/SystemPlugins/Videomode
parent5bc8209d19e1d41f289cfe198e4e3a839adf894b (diff)
downloadenigma2-359c44f6b67d705044412f527448fda2800d34bf.tar.gz
enigma2-359c44f6b67d705044412f527448fda2800d34bf.zip
remove video mode "PC" from video wizard
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index aa0e678b..378bf207 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -73,7 +73,8 @@ class VideoWizard(Wizard):
list = []
print "modes for port", self.port
for mode in self.hw.getModeList(self.port):
- list.append((mode[0], mode[0]))
+ if mode[0] != "PC":
+ list.append((mode[0], mode[0]))
return list
def modeSelectionMade(self, index):