From bf603aaeef3e12783075c7559b30038e91e68667 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Wed, 30 Nov 2005 01:01:12 +0000 Subject: [PATCH] dont allow any other mode then simple for slot A --- lib/python/Screens/Satconfig.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 074033f..2106394 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() -- 2.7.4