diff options
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/Setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index cb268580..e2e55974 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -51,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" |
