aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-13 11:20:09 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-13 11:20:09 +0000
commitebd311a360520b661c0853bfbef643620bbcfda7 (patch)
treed4d851dfb3f501fa8db316d47c19b2de273adc80 /lib/python/Screens
parent31d233dcc551b3c18cf4025ddfdc080dbd408db9 (diff)
downloadenigma2-ebd311a360520b661c0853bfbef643620bbcfda7.tar.gz
enigma2-ebd311a360520b661c0853bfbef643620bbcfda7.zip
add possibility to invalidate configList entrys other than the current one
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/TimerEntry.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index d8f44c91..14aa1ce3 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -71,12 +71,12 @@ class TimerEntry(Screen):
if (config.timerentry.enddate.value < config.timerentry.startdate.value):
config.timerentry.enddate.value = config.timerentry.startdate.value
config.timerentry.enddate.change()
- #FIXME invalidate the config-entry... for redrawing purposes - HOW?
+ self["config"].invalidate(config.timerentry.enddate)
if (configElement.getConfigPath() == "config.timerentry.enddate"):
if (config.timerentry.enddate.value < config.timerentry.startdate.value):
config.timerentry.startdate.value = config.timerentry.enddate.value
config.timerentry.startdate.change()
- #FIXME invalidate the config-entry... for redrawing purposes - HOW?
+ self["config"].invalidate(config.timerentry.startdate)
def createSetup(self):
self.list = []