diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-07 15:15:16 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-07 15:15:16 +0000 |
commit | 03a62d419a81de7de11dc14f5a0cd34ab74780fe (patch) | |
tree | bb0fdef5974280de40995e06243c9acee69c4d58 | |
parent | b4a54efe514cd3c3353fe3cb77df7e246cfa806c (diff) | |
download | vdr-plugin-live-03a62d419a81de7de11dc14f5a0cd34ab74780fe.tar.gz vdr-plugin-live-03a62d419a81de7de11dc14f5a0cd34ab74780fe.tar.bz2 |
Changed recording state from bit comparison to Recording() Method
-rw-r--r-- | pages/timers.ecpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 9c9593c..7784f81 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -55,7 +55,7 @@ using namespace vdrlive; <td><$ timer->WeekDays() > 0 ? *cTimer::PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> - <td><{ if (timer->Flags() & 8) { }><img src="/record.png" alt="Record" /><{ } }></td> + <td><{ if (timer->Recording()) { }><img src="/record.png" alt="Record" /><{ } }></td> <td><$ timer->File() $></td> </tr> <{ |