diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-09 12:16:07 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-09 12:16:07 +0000 |
| commit | 8735bf9681ee930d09b9f7a0a19024ca29ad4e4e (patch) | |
| tree | a91a0db8063b51a3be8cd05946a6a37d8d039e1f /lib | |
| parent | 7caa114b900d8cac5c57e59df971da9280112a1f (diff) | |
| download | enigma2-8735bf9681ee930d09b9f7a0a19024ca29ad4e4e.tar.gz enigma2-8735bf9681ee930d09b9f7a0a19024ca29ad4e4e.zip | |
fix satconfig problem (sometimes simple config was not saved)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 21c40905..ccb776ea 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -62,8 +62,8 @@ class NimSetup(Screen, ConfigListScreen): choices["satposdepends"] = _("second cable of motorized LNB") if len(nimmanager.canConnectTo(self.slotid)) > 0: choices["loopthrough"] = _("loopthrough to") - self.nimConfig.configMode.setChoices(choices) - + self.nimConfig.configMode.setChoices(choices, default = "nothing") + def createSetup(self): print "Creating setup" self.list = [ ] |
