fix redraw-problem with NumericalTextInput in TimerEntry
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 13 Nov 2005 10:46:37 +0000 (10:46 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 13 Nov 2005 10:46:37 +0000 (10:46 +0000)
lib/python/Components/config.py
lib/python/Screens/TimerEntry.py

index 040a9ee467fd931bc98f142a064895982c2dfdd0..724db4d675a517fbdb2a468a203611ad0bbe7384 100644 (file)
@@ -291,8 +291,7 @@ class configText:
                self.parent.save()
                
        def nextEntry(self):
-               print "Next entry"
-               self.handleKey(config.key["nextElement"])
+               self.parent.vals[1]()
 
        def handleKey(self, key):
                #this will no change anything on the value itself
index d05150004c47b19f958a4a2b7e6a2bfbff650a7d..0c94c1700b580b14b13bb2a8ec2d8f551f2008bb 100644 (file)
@@ -40,7 +40,7 @@ class TimerEntry(Screen):
             config.timerentry = ConfigSubsection()
 
             config.timerentry.type = configElement_nonSave("config.timerentry.type", configSelection, 0, ("once", "repeated"))
-            config.timerentry.description = configElement_nonSave("config.timerentry.description", configText, self.timer.description, (configText.extendableSize,))
+            config.timerentry.description = configElement_nonSave("config.timerentry.description", configText, self.timer.description, (configText.extendableSize, self.keyRight))
 
             config.timerentry.repeated = configElement_nonSave("config.timerentry.repeated", configSelection, 0, ("daily", "weekly", "Mon-Fri", "user-defined"))