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:
parent
bfc2c41c12
commit
cd4a7e3ef4
@ -1141,6 +1141,7 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
|
||||
to "Single"
|
||||
for fixing reduced bpp support for DVB subtitles
|
||||
for implementing "DVB Standard compliance" handling
|
||||
for fixing the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel()
|
||||
|
||||
Ralf Klueber <ralf.klueber@vodafone.com>
|
||||
for reporting a bug in cutting a recording if there is only a single editing mark
|
||||
|
2
HISTORY
2
HISTORY
@ -7160,3 +7160,5 @@ Video Disk Recorder Revision History
|
||||
- Fixed making LCARS the default skin.
|
||||
- Adjusted the default values for OSD and font sizes to better fit HDTV.
|
||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||
- Fixed the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel() (thanks
|
||||
to Rolf Ahrenberg).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* 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,
|
||||
@ -515,7 +515,7 @@ void cSkinLCARSDisplayChannel::SetChannel(const cChannel *Channel, int Number)
|
||||
else if (Number)
|
||||
ChNumber = cString::sprintf("%d-", Number);
|
||||
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(xc03, yc00, ChName, Theme.Color(clrChannelName), Theme.Color(clrBackground), tallFont, xi - xc03 - lineHeight, 0, taTop | taLeft);
|
||||
lastSignalDisplay = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user