From: Stefan Pluecken Date: Sun, 15 Nov 2009 10:50:25 +0000 (+0100) Subject: fixes bug #286 X-Git-Tag: 2.6.1~13^2 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/20c942082eedd5307bd331e4097b9892adaed120?ds=sidebyside fixes bug #286 remove DVI-PC from video wizard to solve some sorting problems and remove a not widely used option remove --- diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index 3759c21a..cd1529aa 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -84,7 +84,8 @@ class VideoWizard(WizardLanguage, Rc): descr = port if descr == 'DVI' and hw_type == 'dm500hd': descr = 'HDMI' - list.append((descr,port)) + if port != "DVI-PC": + list.append((descr,port)) list.sort(key = lambda x: x[0]) print "listInputChannels:", list return list