X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/14a8e1d85dd79328945b1812e639e9693cc4cbb1..a0d13ab5a83d571b717120ef81f6c381dd1a3566:/lib/python/Screens/Setup.py diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index ef24ac83..e2e55974 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -1,7 +1,6 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.config import config #global config instance -#from Components.config import configEntry from Components.config import configBoolean from Components.ConfigList import ConfigList from Components.Label import Label @@ -52,11 +51,11 @@ class Setup(Screen): list.append( (ItemText, item) ) def keyOk(self): - self["config"].handleKey(0) + self["config"].handleKey(config.choseElement) def keyLeft(self): - self["config"].handleKey(1) + self["config"].handleKey(config.prevElement) def keyRight(self): - self["config"].handleKey(2) + self["config"].handleKey(config.nextElement) def keySave(self): print "save requested" @@ -104,4 +103,4 @@ class Setup(Screen): "left": self.keyLeft, "right": self.keyRight, "save": self.keySave - }) + }, -1)