diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-01-30 03:46:56 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-01-30 03:46:56 +0000 |
| commit | c797d4040a1dfac3873b481111a84a5c557432f3 (patch) | |
| tree | bf53828331b52009138fdaf1de316f05df6862ea /lib/python/Plugins | |
| parent | f49c7da10f5ee4bafe7c122867b1b0facc679f25 (diff) | |
| download | enigma2-c797d4040a1dfac3873b481111a84a5c557432f3.tar.gz enigma2-c797d4040a1dfac3873b481111a84a5c557432f3.zip | |
fix when booting in scart mode (preferred modes will be empty)
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py index 4d5b09f9..701daaf2 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py @@ -57,9 +57,12 @@ class VideoHardware: self.last_modes_preferred = [ ] self.on_hotplug = CList() - self.on_hotplug.append(self.createConfig) self.readAvailableModes() + + self.createConfig() +# self.on_hotplug.append(self.createConfig) + self.readPreferredModes() # until we have the hotplug poll socket |
