diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-11-15 11:50:25 +0100 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-11-15 11:52:55 +0100 |
| commit | 20c942082eedd5307bd331e4097b9892adaed120 (patch) | |
| tree | 6d278d04fb964a38dacc4775eb46eea60b41c572 /lib/python/Plugins | |
| parent | 2d41896b26c577a592a70b3e36acc368977ee0c5 (diff) | |
| download | enigma2-20c942082eedd5307bd331e4097b9892adaed120.tar.gz enigma2-20c942082eedd5307bd331e4097b9892adaed120.zip | |
fixes bug #286
remove DVI-PC from video wizard to solve some sorting problems and remove a not widely used option
remove
Diffstat (limited to 'lib/python/Plugins')
| -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 3759c21a..cd1529aa 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -84,7 +84,8 @@ class VideoWizard(WizardLanguage, Rc): descr = port if descr == 'DVI' and hw_type == 'dm500hd': descr = 'HDMI' - list.append((descr,port)) + if port != "DVI-PC": + list.append((descr,port)) list.sort(key = lambda x: x[0]) print "listInputChannels:", list return list |
