From 359c44f6b67d705044412f527448fda2800d34bf Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 11 Feb 2008 14:23:40 +0000 Subject: [PATCH] remove video mode "PC" from video wizard --- 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 aa0e678b..378bf207 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -73,7 +73,8 @@ class VideoWizard(Wizard): list = [] print "modes for port", self.port for mode in self.hw.getModeList(self.port): - list.append((mode[0], mode[0])) + if mode[0] != "PC": + list.append((mode[0], mode[0])) return list def modeSelectionMade(self, index): -- 2.30.2