From: Stefan Pluecken Date: Mon, 11 Feb 2008 14:23:40 +0000 (+0000) Subject: remove video mode "PC" from video wizard X-Git-Tag: 2.6.0~1556 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/359c44f6b67d705044412f527448fda2800d34bf remove video mode "PC" from video wizard --- 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):