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 | |
parent | 1bfd67b51561ee1cc325cde99a876a9adc4918e3 (diff) | |
download | skin-lcarsng-228505d00df5733eb4824c2d6e1fb5883e375f7a.tar.gz skin-lcarsng-228505d00df5733eb4824c2d6e1fb5883e375f7a.tar.bz2 |
Updated for release 0.1.00.1.0
-rw-r--r-- | lcarsng.c | 6 | ||||
-rw-r--r-- | skinlcarsng.c | 2 |
2 files changed, 4 insertions, 4 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; diff --git a/skinlcarsng.c b/skinlcarsng.c index da635a0..7e5cdc6 100644 --- a/skinlcarsng.c +++ b/skinlcarsng.c @@ -14,7 +14,7 @@ #include "lcarsng.h" -static const char *VERSION = "0.0.2"; +static const char *VERSION = "0.1.0"; static const char *DESCRIPTION = "skin lcarsng"; class cPluginLCARSNG : public cPlugin { |