summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-02-09 13:14:44 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2003-02-09 13:14:44 +0100
commit8ddaaf98494215f4339726399ffda0d0a597efbf (patch)
treea6c99ecf5eaa89e01f66ae2c3ed3f7e812eadc9d /vdr.c
parent7db4f962520e4922827f9d96d4638f2baf7cdd91 (diff)
downloadvdr-8ddaaf98494215f4339726399ffda0d0a597efbf.tar.gz
vdr-8ddaaf98494215f4339726399ffda0d0a597efbf.tar.bz2
Timers are now processed even if a menu is open1.1.24
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr.c b/vdr.c
index 166afb04..dfaf5dcb 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
- * $Id: vdr.c 1.142 2003/02/09 11:25:38 kls Exp $
+ * $Id: vdr.c 1.143 2003/02/09 13:13:42 kls Exp $
*/
#include <getopt.h>
@@ -459,7 +459,7 @@ int main(int argc, char *argv[])
LastChannel = cDevice::CurrentChannel();
}
// Timers and Recordings:
- if (!Menu) {
+ if (!Timers.BeingEdited()) {
time_t Now = time(NULL); // must do both following calls with the exact same time!
cRecordControls::Process(Now);
cTimer *Timer = Timers.GetMatch(Now);