Removed dashes from channel group delimiter in channels menu

This commit is contained in:
Klaus Schmidinger 2017-06-10 19:19:51 +02:00
parent a98f6ca354
commit a4a3c63779
1 changed files with 2 additions and 2 deletions

4
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 4.36 2017/06/10 15:53:20 kls Exp $
* $Id: menu.c 4.37 2017/06/10 19:19:51 kls Exp $
*/
#include "menu.h"
@ -335,7 +335,7 @@ void cMenuChannelItem::Set(void)
buffer = cString::sprintf("%d\t%s%s\t%s", channel->Number(), X, R, channel->Name());
}
else
buffer = cString::sprintf("\t\t%s ----------------------------------------------------------------", channel->Name());
buffer = cString::sprintf("\t\t%s", channel->Name());
SetText(buffer);
}