mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed displaying the group separators in the channel display
This commit is contained in:
parent
0813564ed6
commit
5a418a9efe
@ -47,6 +47,7 @@ Martin Hammerschmid <martin@hammerschmid.com>
|
||||
for detecting a deadlock when switching channels via Schedule/Now|Next/Switch
|
||||
for adding a missing #include to ringbuffer.c
|
||||
for adding a missing 'public' keyword in device.h
|
||||
for pointing out a bug in displaying the group separators in the channel display
|
||||
|
||||
Bastian Guse <bastian@nocopy.de>
|
||||
for writing the FORMATS entry for timers.conf
|
||||
|
2
HISTORY
2
HISTORY
@ -1683,3 +1683,5 @@ Video Disk Recorder Revision History
|
||||
(thanks to Oliver Endriss for reporting this one).
|
||||
- Fixed handling audio tracks in cDvbDevice.
|
||||
- Updated channels.conf.terr (thanks to Uwe Scheffler).
|
||||
- Fixed displaying the group separators in the channel display (thanks to Martin
|
||||
Hammerschmid for pointing out this one).
|
||||
|
8
menu.c
8
menu.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: menu.c 1.221 2002/10/27 14:06:02 kls Exp $
|
||||
* $Id: menu.c 1.222 2002/11/01 12:15:45 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -2378,10 +2378,10 @@ void cDisplayChannel::DisplayChannel(const cChannel *Channel)
|
||||
char buffer[BufSize];
|
||||
*buffer = 0;
|
||||
if (Channel) {
|
||||
if (Channel->Number() > 0)
|
||||
snprintf(buffer, BufSize, "%d%s %s", Channel->Number(), number ? "-" : "", Channel->Name());
|
||||
else if (Channel->Name())
|
||||
if (Channel->GroupSep())
|
||||
snprintf(buffer, BufSize, "%s", Channel->Name());
|
||||
else
|
||||
snprintf(buffer, BufSize, "%d%s %s", Channel->Number(), number ? "-" : "", Channel->Name());
|
||||
}
|
||||
else if (number)
|
||||
snprintf(buffer, BufSize, "%d-", number);
|
||||
|
Loading…
Reference in New Issue
Block a user