diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-13 10:46:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-13 10:46:37 +0000 |
| commit | 988a709c9d2951f6802a8e78f53785664e8ea590 (patch) | |
| tree | e065d71aeff388642a747cf465efe95f3f63aa66 /lib/python | |
| parent | 425399841b2657846be038cd0ba8fe449a528691 (diff) | |
| download | enigma2-988a709c9d2951f6802a8e78f53785664e8ea590.tar.gz enigma2-988a709c9d2951f6802a8e78f53785664e8ea590.zip | |
fix redraw-problem with NumericalTextInput in TimerEntry
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/config.py | 3 | ||||
| -rw-r--r-- | lib/python/Screens/TimerEntry.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 040a9ee4..724db4d6 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -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 diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index d0515000..0c94c170 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -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")) |
