summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-07-31 15:32:02 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-07-31 15:32:02 +0200
commit1962940c39c1951bd107f63d2e071df58ba0b125 (patch)
tree025b6345e5f7e8fba393001072b83acb6b730c20 /menu.c
parent2a773da9f1e902286e3a458d114263aa8e36f3ac (diff)
downloadvdr-1962940c39c1951bd107f63d2e071df58ba0b125.tar.gz
vdr-1962940c39c1951bd107f63d2e071df58ba0b125.tar.bz2
Modified the display of the channel group separators
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 30532a7d..e12a4684 100644
--- a/menu.c
+++ b/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.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);
}