diff options
author | kamel5 <kamel5 (at) gmx (dot) net> | 2018-11-16 13:13:38 +0100 |
---|---|---|
committer | kamel5 <kamel5 (at) gmx (dot) net> | 2018-11-16 13:13:38 +0100 |
commit | adc84a29f4a28cc9a7f3863d79e29002707c6353 (patch) | |
tree | 9aa16dce46a15d94c49f05219f910bb8a03c6f14 | |
parent | f44087d42114174e60e23c6a85c73974a920950a (diff) | |
download | skin-lcarsng-adc84a29f4a28cc9a7f3863d79e29002707c6353.tar.gz skin-lcarsng-adc84a29f4a28cc9a7f3863d79e29002707c6353.tar.bz2 |
Display "Rec : #%s" in red color
-rw-r--r-- | displaychannel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/displaychannel.c b/displaychannel.c index 6a8ed12..9d9db49 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -258,7 +258,7 @@ void cLCARSNGDisplayChannel::DrawEventRec(const cEvent *Present, const cEvent *F { for (int i = 0; i < 2; i++) { const cEvent *e = !i ? Present : Following; - tColor recColor = !i ? Theme.Color(clrButtonRedBg) : Theme.Color(clrButtonYellowBg); + tColor recColor = !i ? Theme.Color(clrChannelSymbolRecBg) : Theme.Color(clrButtonYellowBg); int y = !i ? yc03 : yc05; if (e) { LOCK_TIMERS_READ; @@ -308,7 +308,7 @@ void cLCARSNGDisplayChannel::DrawTimer(void) osd->DrawText(xc06a, y + y1, cString::sprintf("%s", Event->Title()), Theme.Color(clrEventShortText), Theme.Color(clrBackground), cFont::GetFont(fontSml), xc06l - xc06a - Gap - 1, lineHeight - 2 * y1, taLeft | taBorder); } if (isRecording) // && Number) - osd->DrawText(xc04, y + y1, cString::sprintf("Rec: #%s", *Number), Theme.Color(clrEventShortText), Theme.Color(clrBackground), cFont::GetFont(fontSml), xc05 - xc04 - Gap - 1, lineHeight - 2 * y1, taRight | taBorder); + osd->DrawText(xc04, y + y1, cString::sprintf("Rec: #%s", *Number), Theme.Color(clrChannelSymbolRecBg), Theme.Color(clrBackground), cFont::GetFont(fontSml), xc05 - xc04 - Gap - 1, lineHeight - 2 * y1, taRight | taBorder); i++; } } |