X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FWizard.py;h=a752d31cf66b31631e7e96062ddd5534654cb851;hp=1bff0284d24647a19dc82c203c0af093e42580d5;hb=0e903a5d9d38bd48c792c095d786fc40091a47fa;hpb=0cf3bc28d59e7bfb8519839a8e9c36a87ea382c8 diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 1bff028..a752d31 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()