diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-26 12:19:23 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-26 12:19:23 +0200 |
commit | 7092907ccd846090da89cedf0cca216ff38c6205 (patch) | |
tree | d41c412f4594d0868e14d1de4b2ef2de8275882a /menu.c | |
parent | a4547681d5465067998c4777467540946a73eabe (diff) | |
download | vdr-7092907ccd846090da89cedf0cca216ff38c6205.tar.gz vdr-7092907ccd846090da89cedf0cca216ff38c6205.tar.bz2 |
Timers that are currently recording are now marked with '#'
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.107 2001/08/25 13:37:27 kls Exp $ + * $Id: menu.c 1.108 2001/08/26 12:13:24 kls Exp $ */ #include "menu.h" @@ -975,7 +975,7 @@ void cMenuTimerItem::Set(void) { char *buffer = NULL; asprintf(&buffer, "%c\t%d\t%s\t%02d:%02d\t%02d:%02d\t%s", - timer->active ? '>' : ' ', + timer->active ? timer->recording ? '#' : '>' : ' ', timer->channel, timer->PrintDay(timer->day), timer->start / 100, |