aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InputBox.py
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-04-01 01:40:21 +0200
committerAndreas Oberritter <obi@opendreambox.org>2011-04-01 01:40:21 +0200
commit348cf0e4d7fa1e615635984c9325fc0e8fa4e72b (patch)
tree11c9eac4151e1b388e1ec43ba7d5d96be34ff8c2 /lib/python/Screens/InputBox.py
parentd42f3e1a95c2021cbfdf885f21d87a7fa100f05a (diff)
downloadenigma2-348cf0e4d7fa1e615635984c9325fc0e8fa4e72b.tar.gz
enigma2-348cf0e4d7fa1e615635984c9325fc0e8fa4e72b.zip
fix commit fb764c8e53e17bc3e1e806e946956f3e70792020 (fixes PiP)
Diffstat (limited to 'lib/python/Screens/InputBox.py')
-rw-r--r--lib/python/Screens/InputBox.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/InputBox.py b/lib/python/Screens/InputBox.py
index 13797687..7dd7b127 100644
--- a/lib/python/Screens/InputBox.py
+++ b/lib/python/Screens/InputBox.py
@@ -43,9 +43,9 @@ class InputBox(Screen):
}, -1)
if self["input"].type == Input.TEXT:
- self.onShow.append(self.setKeyboardModeAscii)
+ self.onExecBegin.append(self.setKeyboardModeAscii)
else:
- self.onShow.append(self.setKeyboardModeNone)
+ self.onExecBegin.append(self.setKeyboardModeNone)
def gotAsciiCode(self):
self["input"].handleAscii(getPrevAsciiCode())