add possibility to invalidate configList entrys other than the current one
[enigma2.git] / lib / python / Screens / TimerEntry.py
index d8f44c91773115f0de9121f52709ffa33c5e32e8..14aa1ce3deb7f7306203d51863b0368964e20b72 100644 (file)
@@ -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 = []