summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Mair <andreas@vdr-developer.org>2011-05-16 12:08:57 +0200
committerAndreas Mair <andreas@vdr-developer.org>2011-05-16 12:08:57 +0200
commitc23ae8c348df5e64a67a3c30783380c2ab1eed06 (patch)
tree66fc62cbd27f600ef77b494d337be959fdb98bcf
parentac3ca809d23b4ac399d3f2f96d88314e7e24aa7a (diff)
downloadvdr-plugin-skinenigmang-c23ae8c348df5e64a67a3c30783380c2ab1eed06.tar.gz
vdr-plugin-skinenigmang-c23ae8c348df5e64a67a3c30783380c2ab1eed06.tar.bz2
Fixed width of a timer's title in menu OSD info area (Closes #633).
-rw-r--r--enigma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enigma.c b/enigma.c
index 2060874..e9aca15 100644
--- a/enigma.c
+++ b/enigma.c
@@ -1533,7 +1533,7 @@ void cSkinEnigmaDisplayMenu::SetupAreas(void)
TE_MARQUEE(osd, -1, fScrollInfo, x + (timer->isRecording ? (bmRecording.Width() + Gap) : 0),
y, timer->title.c_str(),
Theme.Color(clrMenuItemSelectableFg), Theme.Color(clrAltBackground),
- pFontInfoTimerText, nBPP, w, h);
+ pFontInfoTimerText, nBPP, w - (timer->isRecording ? (bmRecording.Width() + Gap) : 0), h);
y += h;
char* info = NULL;
int rc = -1;