From: Stefan Pluecken Date: Mon, 10 Apr 2006 20:06:22 +0000 (+0000) Subject: don't show REC symbol in infobar when timer is a 'justplay' timer X-Git-Tag: 2.6.0~3641 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/320e2ac065983b30d3fc11e8dcb155b26e252015 don't show REC symbol in infobar when timer is a 'justplay' timer --- diff --git a/RecordTimer.py b/RecordTimer.py index 9a874a4c..eb9de6fb 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -242,7 +242,7 @@ class RecordTimer(timer.Timer): def isRecording(self): isRunning = False for timer in self.timer_list: - if timer.isRunning(): + if timer.isRunning() and not timer.justplay: isRunning = True return isRunning