diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-01-25 01:08:58 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-01-25 01:08:58 +0000 |
| commit | 3861923553aad99f8b1a5ce5d81e7d9b035b65bb (patch) | |
| tree | 1ff28c6546f323ebd467c1fee2e96d6a0f7f7ec9 /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | |
| parent | 4a043c2bc10981a946bd0ad8f955e1510db3fcaa (diff) | |
| download | enigma2-3861923553aad99f8b1a5ce5d81e7d9b035b65bb.tar.gz enigma2-3861923553aad99f8b1a5ce5d81e7d9b035b65bb.zip | |
use special refresh rate selection for DVI ports
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
| -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 45ff6f0c..8fffa5a9 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -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): |
