From: Ronny Strutz Date: Wed, 30 Nov 2005 01:01:12 +0000 (+0000) Subject: dont allow any other mode then simple for slot A X-Git-Tag: 2.6.0~4865 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/bf603aaeef3e12783075c7559b30038e91e68667 dont allow any other mode then simple for slot A --- 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()