diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-31 15:32:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-31 15:32:02 +0200 |
commit | 1962940c39c1951bd107f63d2e071df58ba0b125 (patch) | |
tree | 025b6345e5f7e8fba393001072b83acb6b730c20 /menu.c | |
parent | 2a773da9f1e902286e3a458d114263aa8e36f3ac (diff) | |
download | vdr-1962940c39c1951bd107f63d2e071df58ba0b125.tar.gz vdr-1962940c39c1951bd107f63d2e071df58ba0b125.tar.bz2 |
Modified the display of the channel group separators
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.88 2001/07/28 16:17:28 kls Exp $ + * $Id: menu.c 1.89 2001/07/31 15:28:10 kls Exp $ */ #include "menu.h" @@ -590,7 +590,7 @@ cMenuChannelItem::cMenuChannelItem(int Index, cChannel *Channel) index = Index; channel = Channel; if (channel->groupSep) - SetColor(clrWhite, clrCyan); + SetColor(clrCyan, clrBackground); Set(); } @@ -600,7 +600,7 @@ void cMenuChannelItem::Set(void) if (!channel->groupSep) asprintf(&buffer, "%d\t%s", channel->number, channel->name ); else - asprintf(&buffer, "\t%s", channel->name); + asprintf(&buffer, "---\t%s ----------------------------------------------------------------", channel->name); SetText(buffer, false); } |