aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-09-13 23:42:23 +0200
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-10-06 11:05:02 +0200
commit073cea58c7f58a9cd2fe2adf9c93c0557b54d854 (patch)
tree6e5ca2f06fa78b915724c759a7f386610d7718e8 /lib/python
parentddef990f9a2b56ef9c63dda46d1b84c9438410c5 (diff)
downloadenigma2-073cea58c7f58a9cd2fe2adf9c93c0557b54d854.tar.gz
enigma2-073cea58c7f58a9cd2fe2adf9c93c0557b54d854.zip
fixes bug #582
handle keyboard entries in wizard correctly for dynamic config elements
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Screens/Wizard.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 1bff0284..a752d31c 100755
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -387,10 +387,14 @@ class Wizard(Screen):
def keyNumberGlobal(self, number):
if (self.wizard[self.currStep]["config"]["screen"] != None):
self.configInstance.keyNumberGlobal(number)
+ elif (self.wizard[self.currStep]["config"]["type"] == "dynamic"):
+ self["config"].handleKey(KEY_0 + number)
def keyGotAscii(self):
if (self.wizard[self.currStep]["config"]["screen"] != None):
self["config"].handleKey(KEY_ASCII)
+ elif (self.wizard[self.currStep]["config"]["type"] == "dynamic"):
+ self["config"].handleKey(KEY_ASCII)
def left(self):
self.resetCounter()