summaryrefslogtreecommitdiff
path: root/skinlcars.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-06-04 07:54:51 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-06-04 07:54:51 +0200
commit95e180a3e3a30615feb4caa92cd6d94152a283e3 (patch)
tree83095cb6813df9ed87ad10e50fb335bfa135996d /skinlcars.c
parent1bb441e6994457de1ec089e4eaa432efdf05d3b3 (diff)
downloadvdr-95e180a3e3a30615feb4caa92cd6d94152a283e3.tar.gz
vdr-95e180a3e3a30615feb4caa92cd6d94152a283e3.tar.bz2
Fixed the background color of the Transfer Mode indicator bitmap in the LCARS skin
Diffstat (limited to 'skinlcars.c')
-rw-r--r--skinlcars.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/skinlcars.c b/skinlcars.c
index 02b2993f..e8442109 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.2 2012/06/03 09:45:00 kls Exp $
+ * $Id: skinlcars.c 2.3 2012/06/03 15:59:26 kls Exp $
*/
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
@@ -1247,10 +1247,11 @@ void cSkinLCARSDisplayMenu::DrawLiveIndicator(void)
if (lastLiveIndicatorY >= 0)
osd->DrawRectangle(xs12, lastLiveIndicatorY, xs13 - 1, lastLiveIndicatorY + lineHeight - 1, Theme.Color(clrBackground));
if (y >= 0) {
- osd->DrawRectangle(xs12, y, xs12 + lineHeight / 2 - 1, y + lineHeight - 1, frameColor);
- osd->DrawEllipse (xs12 + lineHeight / 2, y, xs13 - 1, y + lineHeight - 1, frameColor, 5);
+ tColor ColorBg = Theme.Color(clrChannelFrameBg);
+ osd->DrawRectangle(xs12, y, xs12 + lineHeight / 2 - 1, y + lineHeight - 1, ColorBg);
+ osd->DrawEllipse (xs12 + lineHeight / 2, y, xs13 - 1, y + lineHeight - 1, ColorBg, 5);
if (Transferring)
- osd->DrawBitmap((xs12 + xs13 - bmTransferMode.Width()) / 2, y + (lineHeight - bmTransferMode.Height()) / 2, bmTransferMode, Theme.Color(clrChannelFrameFg), Theme.Color(clrChannelFrameBg));
+ osd->DrawBitmap((xs12 + xs13 - bmTransferMode.Width()) / 2, y + (lineHeight - bmTransferMode.Height()) / 2, bmTransferMode, Theme.Color(clrChannelFrameFg), ColorBg);
}
lastLiveIndicatorY = y;
lastLiveIndicatorTransferring = Transferring;