diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2011-05-16 12:08:57 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2011-05-16 12:08:57 +0200 |
commit | c23ae8c348df5e64a67a3c30783380c2ab1eed06 (patch) | |
tree | 66fc62cbd27f600ef77b494d337be959fdb98bcf | |
parent | ac3ca809d23b4ac399d3f2f96d88314e7e24aa7a (diff) | |
download | vdr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |