aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-10 12:47:22 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-10 12:47:22 +0000
commitf7672781a51e8a21ccbd48ce53a72ad61f5d5e7e (patch)
tree53a9eea505b6721764f35f910e1c873b896e7e47 /lib/python
parentdbf2cd2737b0f27ae6053d91d95b5c47b779fd8a (diff)
downloadenigma2-f7672781a51e8a21ccbd48ce53a72ad61f5d5e7e.tar.gz
enigma2-f7672781a51e8a21ccbd48ce53a72ad61f5d5e7e.zip
don't pay attention to instant record timers, that are not running
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py2
1 files changed, 1 insertions, 1 deletions
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":