1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel()

This commit is contained in:
Klaus Schmidinger 2012-06-04 09:41:06 +02:00
parent bfc2c41c12
commit cd4a7e3ef4
3 changed files with 5 additions and 2 deletions

View File

@ -1141,6 +1141,7 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
to "Single" to "Single"
for fixing reduced bpp support for DVB subtitles for fixing reduced bpp support for DVB subtitles
for implementing "DVB Standard compliance" handling for implementing "DVB Standard compliance" handling
for fixing the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel()
Ralf Klueber <ralf.klueber@vodafone.com> Ralf Klueber <ralf.klueber@vodafone.com>
for reporting a bug in cutting a recording if there is only a single editing mark for reporting a bug in cutting a recording if there is only a single editing mark

View File

@ -7160,3 +7160,5 @@ Video Disk Recorder Revision History
- Fixed making LCARS the default skin. - Fixed making LCARS the default skin.
- Adjusted the default values for OSD and font sizes to better fit HDTV. - Adjusted the default values for OSD and font sizes to better fit HDTV.
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel() (thanks
to Rolf Ahrenberg).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: skinlcars.c 2.5 2012/06/04 08:53:57 kls Exp $ * $Id: skinlcars.c 2.6 2012/06/04 09:35:43 kls Exp $
*/ */
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures, // "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
@ -515,7 +515,7 @@ void cSkinLCARSDisplayChannel::SetChannel(const cChannel *Channel, int Number)
else if (Number) else if (Number)
ChNumber = cString::sprintf("%d-", Number); ChNumber = cString::sprintf("%d-", Number);
else else
ChName = ChannelString(NULL, NULL); ChName = ChannelString(NULL, 0);
osd->DrawText(xc00, yc00, ChNumber, Theme.Color(clrChannelFrameFg), frameColor, tallFont, xc02 - xc00, yc02 - yc00, taTop | taRight | taBorder); osd->DrawText(xc00, yc00, ChNumber, Theme.Color(clrChannelFrameFg), frameColor, tallFont, xc02 - xc00, yc02 - yc00, taTop | taRight | taBorder);
osd->DrawText(xc03, yc00, ChName, Theme.Color(clrChannelName), Theme.Color(clrBackground), tallFont, xi - xc03 - lineHeight, 0, taTop | taLeft); osd->DrawText(xc03, yc00, ChName, Theme.Color(clrChannelName), Theme.Color(clrBackground), tallFont, xi - xc03 - lineHeight, 0, taTop | taLeft);
lastSignalDisplay = 0; lastSignalDisplay = 0;