aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-05 19:42:27 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-05 19:42:27 +0100
commit7f092da014b616004d07fc27e567d1d6f096d15b (patch)
tree5792a418218e9644af2e730e6404975cd7990550 /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
parentc9fc2db8f1829ec65482487070722194ddc0fcf4 (diff)
parent3238fce693dbe855e0e75b40eb26c883e940403d (diff)
downloadenigma2-7f092da014b616004d07fc27e567d1d6f096d15b.tar.gz
enigma2-7f092da014b616004d07fc27e567d1d6f096d15b.zip
Merge branch 'master' into 3.0
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index 9b9044ee..18e81764 100755
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -90,7 +90,7 @@ class VideoWizard(WizardLanguage, Rc):
for port in self.hw.getPortList():
if self.hw.isPortUsed(port):
descr = port
- if descr == 'DVI' and hw_type in ('dm500hd', 'dm800se'):
+ if descr == 'DVI' and hw_type in ('dm500hd', 'dm800se', 'dm7020hd'):
descr = 'HDMI'
if port != "DVI-PC":
list.append((descr,port))
@@ -108,7 +108,7 @@ class VideoWizard(WizardLanguage, Rc):
self.inputSelect(self.selection)
if self["portpic"].instance is not None:
picname = self.selection
- if picname == "DVI" and HardwareInfo().get_device_name() in ("dm500hd", "dm800se"):
+ if picname == "DVI" and HardwareInfo().get_device_name() in ("dm500hd", "dm800se", "dm7020hd"):
picname = "HDMI"
self["portpic"].instance.setPixmapFromFile(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/Videomode/" + picname + ".png"))