use special refresh rate selection for DVI ports
[enigma2.git] / lib / python / Plugins / SystemPlugins / Videomode / VideoWizard.py
index 45ff6f0cf9a4b3d9ab1066562f64af9b782e285a..8fffa5a9837c6985be1a6464834f6a428bc5b17b 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):