add some characters to NumericalTextInput
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sat, 12 Nov 2005 00:41:45 +0000 (00:41 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sat, 12 Nov 2005 00:41:45 +0000 (00:41 +0000)
fix size of channelselection list

data/skin.xml
lib/python/Tools/NumericalTextInput.py

index 6e62b1c51dd2ebf60e489a2f3adf9a9c46b20fb2..dc09176485229c56bd234820ee9a32509aeb1c3d 100644 (file)
                        <ePixmap position="0,0" size="59,80" pixmap="/usr/share/enigma2/mute-fs8.png" />
                </screen>
                <screen name="ChannelSelection" position="90,100" size="560,420" title="Channel Selection">
-                       <widget name="list" position="10,50" size="540,320" />
+                       <widget name="list" position="10,50" size="540,325" />
 <!--                   <widget name="okbutton" position="340,50" size="140,30" />-->
                        <widget name="key_red" position="0,0" size="140,40" backgroundColor="red" font="Arial;21" />
                        <widget name="key_green" position="140,0" size="140,40" backgroundColor="green" font="Arial;21" />
index 02e74ed8a8dc66a8a9ca4ed3af3dcbb9cd48ab00..79c330107bed9cb4f0f980fb5cd0db5617439451 100644 (file)
@@ -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