summaryrefslogtreecommitdiff
path: root/skinlcars.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-02-15 15:12:24 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-02-15 15:12:24 +0100
commit2de75c3e9ffec0e76a43e1e8c4ebe8b023ae628c (patch)
treeba91c3f81d52d158c270c6aad9d646541bb9e18f /skinlcars.c
parentb4d8d93534aa71c66237f2225e4d041ce1ea30d9 (diff)
downloadvdr-2de75c3e9ffec0e76a43e1e8c4ebe8b023ae628c.tar.gz
vdr-2de75c3e9ffec0e76a43e1e8c4ebe8b023ae628c.tar.bz2
Fixed displaying pending timers in "alert" mode in the LCARS skin
Diffstat (limited to 'skinlcars.c')
-rw-r--r--skinlcars.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skinlcars.c b/skinlcars.c
index 42565b7d..7079d785 100644
--- a/skinlcars.c
+++ b/skinlcars.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinlcars.c 2.18 2013/01/25 14:54:11 kls Exp $
+ * $Id: skinlcars.c 2.19 2013/02/15 15:08:02 kls Exp $
*/
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
@@ -1136,7 +1136,7 @@ void cSkinLCARSDisplayMenu::DrawTimer(const cTimer *Timer, int y, bool MultiRec)
// The timer data:
bool Alert = !Timer->Recording() && Timer->Pending();
tColor ColorFg = Alert ? Theme.Color(clrAlertFg) : Theme.Color(clrTimerFg);
- tColor ColorBg = Alert ? Theme.Color(clrAlertFg) : Theme.Color(clrTimerBg);
+ tColor ColorBg = Alert ? Theme.Color(clrAlertBg) : Theme.Color(clrTimerBg);
osd->DrawRectangle(xs00, y, xs03 - 1, y + lineHeight - 1, ColorBg);
cString Date;
if (Timer->Recording())