aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-08 15:53:17 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-08 15:53:17 +0000
commitb35f481ef0ccd35ecfa9bcd610ad1e923e86a391 (patch)
tree8a731dbf2a4ec45761f75c82f72e73846b58605e /lib/python/Screens
parent9fe975821792486e21350b365217717ed29ca9bb (diff)
downloadenigma2-b35f481ef0ccd35ecfa9bcd610ad1e923e86a391.tar.gz
enigma2-b35f481ef0ccd35ecfa9bcd610ad1e923e86a391.zip
fix keyboard
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/InputBox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/InputBox.py b/lib/python/Screens/InputBox.py
index f3f97752..9d54135c 100644
--- a/lib/python/Screens/InputBox.py
+++ b/lib/python/Screens/InputBox.py
@@ -15,7 +15,7 @@ class InputBox(Screen):
self["text"] = Label(title)
self["input"] = Input(**kwargs)
- self["actions"] = NumberActionMap(["WizardActions", "InputBoxActions", "AsciiActions"],
+ self["actions"] = NumberActionMap(["WizardActions", "InputBoxActions", "InputAsciiActions"],
{
"gotAsciiCode": self.gotAsciiCode,
"ok": self.go,