diff options
author | Maniac <maniac> | 2011-05-25 18:01:49 +0200 |
---|---|---|
committer | Maniac <maniac> | 2011-05-25 18:01:49 +0200 |
commit | 7d1f2866a6f814abacd3708786c25c54f9d904ce (patch) | |
tree | b82327adebed2f71fb876e474b95861259a269ae | |
parent | 1ccbe6d3ee727794d1cf6a7d8b557508207de060 (diff) | |
download | vdr-plugin-skinpearlhd-7d1f2866a6f814abacd3708786c25c54f9d904ce.tar.gz vdr-plugin-skinpearlhd-7d1f2866a6f814abacd3708786c25c54f9d904ce.tar.bz2 |
fix previous commit
-rw-r--r-- | pearlhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -960,7 +960,7 @@ void cSkinPearlHDDisplayMenu::SetItem(const char *Text, int Index, bool Current, { int xt = x1Item+75 + Tab(i); if (!IsTextProgressbar(s)) - osd->DrawText(xt, y1Item+4, s, Theme.Color(Current ? clrFontColor : clrFontColorInactive), Theme.Color(Current ? clrMainSolid : clrLoLight), fontSansBook27, x2Item-xt)); + osd->DrawText(xt, y1Item+4, s, Theme.Color(Current ? clrFontColor : clrFontColorInactive), Theme.Color(Current ? clrMainSolid : clrLoLight), fontSansBook27, x2Item-xt); else { std::string text = s; |