From 327ae996e0a3a685dff1663f600493e103adb098 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Thu, 1 May 2008 16:58:12 +0000 Subject: reenable PC mode video selection for dvi ports in the video wizard --- lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml') diff --git a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml index c3cbabe4..8426f249 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml +++ b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml @@ -31,7 +31,7 @@ self["portpic"].hide() -self.condition = (self.port != "DVI") +self.condition = (self.port != "DVI" or self.mode == "PC") @@ -49,7 +49,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -65,7 +65,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -87,7 +87,7 @@ self.rateSelect("60Hz") -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") @@ -102,7 +102,7 @@ self["rc"].startMoving() -self.condition = (self.port == "DVI") +self.condition = (self.port == "DVI" and self.mode != "PC") -- cgit v1.2.3