From f7672781a51e8a21ccbd48ce53a72ad61f5d5e7e Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 10 Apr 2006 12:47:22 +0000 Subject: [PATCH 1/1] don't pay attention to instant record timers, that are not running --- lib/python/Screens/InfoBarGenerics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": -- 2.30.2