diff options
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): |
