diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-02-11 14:23:40 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-02-11 14:23:40 +0000 |
| commit | 359c44f6b67d705044412f527448fda2800d34bf (patch) | |
| tree | 87da08a81a25ef7189c13442ed67384649ba5097 /lib/python | |
| parent | 5bc8209d19e1d41f289cfe198e4e3a839adf894b (diff) | |
| download | enigma2-359c44f6b67d705044412f527448fda2800d34bf.tar.gz enigma2-359c44f6b67d705044412f527448fda2800d34bf.zip | |
remove video mode "PC" from video wizard
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 3 |
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): |
