diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-05-09 11:04:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-05-09 11:04:42 +0000 |
| commit | fc6db03e4ba81da917b64bb55e65e82bb2808b22 (patch) | |
| tree | 8d2c4ebd792344656be3b21b40b178fcbb05d411 /lib/python/Plugins/SystemPlugins | |
| parent | 7cb77075d9bfcbc948a8b02dcfc841a51c9473f1 (diff) | |
| download | enigma2-fc6db03e4ba81da917b64bb55e65e82bb2808b22.tar.gz enigma2-fc6db03e4ba81da917b64bb55e65e82bb2808b22.zip | |
add missing save for videomode config entries
Diffstat (limited to 'lib/python/Plugins/SystemPlugins')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py index c90f8fd8..87529af3 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py @@ -164,8 +164,11 @@ class VideoHardware: def saveMode(self, port, mode, rate): config.av.videoport.value = port + config.av.videoport.save() config.av.videomode[port].value = mode + config.av.videomode[port].save() config.av.videorate[mode].value = rate + config.av.videorate[mode].save() def isPortAvailable(self, port): # fixme |
