mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed displaying pending timers in "alert" mode in the LCARS skin
This commit is contained in:
parent
b4d8d93534
commit
2de75c3e9f
1
HISTORY
1
HISTORY
@ -7622,3 +7622,4 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed the return value of cOsdProvider::StoreImage() in case there is no OSD provider.
|
- Fixed the return value of cOsdProvider::StoreImage() in case there is no OSD provider.
|
||||||
- Fixed a crash in cMenuEditChanItem::Set() when entering a channel number that
|
- Fixed a crash in cMenuEditChanItem::Set() when entering a channel number that
|
||||||
doesn't exist (reported by Mikael Hübsch).
|
doesn't exist (reported by Mikael Hübsch).
|
||||||
|
- Fixed displaying pending timers in "alert" mode in the LCARS skin.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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,
|
// "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:
|
// The timer data:
|
||||||
bool Alert = !Timer->Recording() && Timer->Pending();
|
bool Alert = !Timer->Recording() && Timer->Pending();
|
||||||
tColor ColorFg = Alert ? Theme.Color(clrAlertFg) : Theme.Color(clrTimerFg);
|
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);
|
osd->DrawRectangle(xs00, y, xs03 - 1, y + lineHeight - 1, ColorBg);
|
||||||
cString Date;
|
cString Date;
|
||||||
if (Timer->Recording())
|
if (Timer->Recording())
|
||||||
|
Loading…
Reference in New Issue
Block a user