fixes bug #286
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 15 Nov 2009 10:50:25 +0000 (11:50 +0100)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 15 Nov 2009 10:52:55 +0000 (11:52 +0100)
remove DVI-PC from video wizard to solve some sorting problems and remove a not widely used option
remove

lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py

index 3759c21..cd1529a 100644 (file)
@@ -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