diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-10 02:33:46 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-10 02:33:46 +0000 |
| commit | 666ac6d299b29eaa85b8b1cb902d6df0b7d8744a (patch) | |
| tree | 97227efe207ab7b3467ab84d6f0751e51cd2d1a6 /lib/python | |
| parent | 285a69c40c5d0983f7952d0a4112112afc3c87c5 (diff) | |
| download | enigma2-666ac6d299b29eaa85b8b1cb902d6df0b7d8744a.tar.gz enigma2-666ac6d299b29eaa85b8b1cb902d6df0b7d8744a.zip | |
forbid enabling advanced mode...from advanced to simple is still possible
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 7ed34cf0..5313896b 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -54,7 +54,9 @@ class NimSetup(Screen): self.newConfig() def keyRight(self): - self["config"].handleKey(config.key["nextElement"]) + #forbid to enable advanced mode until its ready + if self["config"].getCurrent()[0] != "Configmode": + self["config"].handleKey(config.key["nextElement"]) self.newConfig() def keyNumberGlobal(self, number): |
