X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/31852389b616fe439a66e987cd64b6ef4060f982..6eeefece35e4269e02fdb7abab4f79d8e7b8f98b:/lib/python/Screens/TimerEdit.py diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py index 3eae8162..ed11874e 100644 --- a/lib/python/Screens/TimerEdit.py +++ b/lib/python/Screens/TimerEdit.py @@ -1,16 +1,14 @@ from Screen import Screen from Components.TimerList import TimerList, TimerEntryComponent -from Components.ConfigList import ConfigList from Components.MenuList import MenuList from Components.ActionMap import ActionMap from Components.Label import Label from Components.Button import Button from Screens.MessageBox import MessageBox from TimerEntry import TimerEntry, TimerLog -from RecordTimer import RecordTimerEntry, parseEvent +from RecordTimer import RecordTimerEntry, parseEvent, AFTEREVENT from time import * from ServiceReference import ServiceReference -from Components.config import * from Components.TimerSanityCheck import TimerSanityCheck class TimerEditList(Screen): @@ -116,6 +114,7 @@ class TimerEditList(Screen): cur = list.getCurrent() if cur: timer = cur[0] + timer.afterEvent = AFTEREVENT.NONE self.session.nav.RecordTimer.removeEntry(timer) self.refill()