diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-09-13 23:42:23 +0200 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-09-13 23:45:40 +0200 |
| commit | 3c4d2076b502a00d66b39f7f390cbed287193ceb (patch) | |
| tree | b22a121ba6eb1f94c8e815e7803d2d6c7e037b7c /lib/python | |
| parent | eaabb0ae7eacb503c6774426ef9c960241e29e22 (diff) | |
| download | enigma2-3c4d2076b502a00d66b39f7f390cbed287193ceb.tar.gz enigma2-3c4d2076b502a00d66b39f7f390cbed287193ceb.zip | |
fixes bug #582
handle keyboard entries in wizard correctly for dynamic config elements
Diffstat (limited to 'lib/python')
| -rwxr-xr-x | lib/python/Screens/Wizard.py | 4 |
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() |
