diff options
author | Karl Melscher <kamel5@gmx.net> | 2018-03-07 16:25:44 +0100 |
---|---|---|
committer | Karl Melscher <kamel5@gmx.net> | 2018-03-07 16:25:44 +0100 |
commit | 228505d00df5733eb4824c2d6e1fb5883e375f7a (patch) | |
tree | b73662b97fa31ff616ac828082c61ea8e32f0cd7 /lcarsng.c | |
parent | 1bfd67b51561ee1cc325cde99a876a9adc4918e3 (diff) | |
download | skin-lcarsng-228505d00df5733eb4824c2d6e1fb5883e375f7a.tar.gz skin-lcarsng-228505d00df5733eb4824c2d6e1fb5883e375f7a.tar.bz2 |
Updated for release 0.1.00.1.0
Diffstat (limited to 'lcarsng.c')
-rw-r--r-- | lcarsng.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -268,7 +268,7 @@ static bool DrawDeviceData(cOsd *Osd, const cDevice *Device, int x0, int y0, int #else cString s = cString::sprintf("CAM %d", CamSlot->SlotNumber()); #endif - Osd->DrawText(x, y1 - TinyFont->Height(), s, ColorFg, ColorBg, TinyFont); + Osd->DrawText(x, y1 - TinyFont->Height(), s, ColorFg, ColorBg, TinyFont); xs = max(xs, x + TinyFont->Width(s)); } LastCamSlot = CamSlot; @@ -1898,7 +1898,7 @@ void cLCARSNGDisplayMenu::SetTitle(const char *Title) break; case mcRecording: #ifdef USE_WAREAGLEICON - osd->DrawText(xm04, ys00, cString::sprintf("%i", NumRecordingsInPath), Theme.Color(clrMenuFrameFg), frameColor, font, xm08 - xm04 - 1, lineHeight, taBottom | taRight); + osd->DrawText(xm04, ys00, cString::sprintf("%i", NumRecordingsInPath), Theme.Color(clrMenuFrameFg), frameColor, font, xm08 - xm04 - 1, lineHeight, taBottom | taRight); #endif /* WAREAGLEICON */ currentTitle = Title; case mcRecordingInfo: @@ -1908,7 +1908,7 @@ void cLCARSNGDisplayMenu::SetTitle(const char *Title) case mcScheduleNow: case mcScheduleNext: case mcEvent: - osd->DrawRectangle(xs00 - Gap, ys00, xs00, ys01 - 1, Theme.Color(clrBackground)); + osd->DrawRectangle(xs00 - Gap, ys00, xs00, ys01 - 1, Theme.Color(clrBackground)); osd->DrawText(xs00, ys00, Title, Theme.Color(clrMenuFrameFg), frameColor, font, xs11 - xs00 - 1, lineHeight, taBottom | taRight); osd->DrawRectangle(xs12, ys00, xs13 - 1, ys01 - 1, frameColor); break; |