use special refresh rate selection for DVI ports
[vuplus_dvbapp] / lib / python / Plugins / SystemPlugins / Videomode / VideoWizard.py
index 45ff6f0..8fffa5a 100644 (file)
@@ -48,7 +48,8 @@ class VideoWizard(Wizard):
                list = []
 
                for port in self.hw.getPortList():
-                       list.append((port, port))
+                       if self.hw.isPortUsed(port):
+                               list.append((port, port))
                return list
 
        def inputSelectionMade(self, index):