From: Stefan Pluecken Date: Sat, 12 Nov 2005 00:41:45 +0000 (+0000) Subject: add some characters to NumericalTextInput X-Git-Tag: 2.6.0~5313 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/cada870e04110fb127065194a1cba16b7b380ba9 add some characters to NumericalTextInput fix size of channelselection list --- diff --git a/data/skin.xml b/data/skin.xml index 6e62b1c5..dc091764 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -147,7 +147,7 @@ - + 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