aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-12 00:41:45 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-12 00:41:45 +0000
commitcada870e04110fb127065194a1cba16b7b380ba9 (patch)
tree06bdf6b6a25f6ac7a0aea7b5a989d18f655f9f82 /lib/python
parent620e62f6361005cbf56cfbf5db5e02279f1441f9 (diff)
downloadenigma2-cada870e04110fb127065194a1cba16b7b380ba9.tar.gz
enigma2-cada870e04110fb127065194a1cba16b7b380ba9.zip
add some characters to NumericalTextInput
fix size of channelselection list
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Tools/NumericalTextInput.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/python/Tools/NumericalTextInput.py b/lib/python/Tools/NumericalTextInput.py
index 02e74ed8..79c33010 100644
--- a/lib/python/Tools/NumericalTextInput.py
+++ b/lib/python/Tools/NumericalTextInput.py
@@ -2,7 +2,7 @@ from enigma import *
class NumericalTextInput:
mapping = []
- mapping.append (".,?'\"0") # 0
+ mapping.append (".,?'\"0-()@/:_") # 0
mapping.append (" 1") # 1
mapping.append ("abc2ABC") # 2
mapping.append ("def3DEF") # 3
@@ -12,9 +12,6 @@ class NumericalTextInput:
mapping.append ("pqrs7PQRS") # 7
mapping.append ("tuv8TUV") # 8
mapping.append ("wxyz9WXYZ") # 9
-
-
-
def __init__(self, nextFunction):
self.nextFunction = nextFunction