From 20c942082eedd5307bd331e4097b9892adaed120 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sun, 15 Nov 2009 11:50:25 +0100 Subject: [PATCH] fixes bug #286 remove DVI-PC from video wizard to solve some sorting problems and remove a not widely used option remove --- lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.30.2