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:09 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-05 19:42:09 +0100
commit3238fce693dbe855e0e75b40eb26c883e940403d (patch)
tree5792a418218e9644af2e730e6404975cd7990550 /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
parent7fd4241a1d7b8d7c36385860b24882636517473b (diff)
downloadenigma2-3238fce693dbe855e0e75b40eb26c883e940403d.tar.gz
enigma2-3238fce693dbe855e0e75b40eb26c883e940403d.zip
add support for dm7020hd
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"))