From: Stefan Pluecken Date: Mon, 10 Apr 2006 12:47:22 +0000 (+0000) Subject: don't pay attention to instant record timers, that are not running X-Git-Tag: 2.6.0~3643 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/f7672781a51e8a21ccbd48ce53a72ad61f5d5e7e?ds=sidebyside don't pay attention to instant record timers, that are not running --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 58c12696..1dc0a117 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1069,7 +1069,7 @@ class InfoBarInstantRecord: return list = [] for x in self.recording: - if x.dontSave: + if x.dontSave and x.isRunning(): list.append(TimerEntryComponent(x, False)) if answer[1] == "changeduration":