diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-30 01:01:12 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-30 01:01:12 +0000 |
| commit | bf603aaeef3e12783075c7559b30038e91e68667 (patch) | |
| tree | 72e50ffa1057e2378ef42f566285a2582619175c /lib/python | |
| parent | 8ed2bf5de4cf361b65bd1b7426221cf1a7339b27 (diff) | |
| download | enigma2-bf603aaeef3e12783075c7559b30038e91e68667.tar.gz enigma2-bf603aaeef3e12783075c7559b30038e91e68667.zip | |
dont allow any other mode then simple for slot A
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 074033fa..21063942 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -65,6 +65,9 @@ class NimSetup(Screen): self.createSetup() def keyLeft(self): + if self["config"].getCurrent()[0] == _("Configmode"): + if self.nim.slotid == 0: + return self["config"].handleKey(config.key["prevElement"]) self.newConfig() |
