From 1962940c39c1951bd107f63d2e071df58ba0b125 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Tue, 31 Jul 2001 15:32:02 +0200 Subject: [PATCH] Modified the display of the channel group separators --- HISTORY | 5 +++++ menu.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index d625b260..fce064ee 100644 --- a/HISTORY +++ b/HISTORY @@ -609,3 +609,8 @@ Video Disk Recorder Revision History - Increased timeout until reporting "video data stream broken" when recording. - Explicitly switching back to the previously active channel after ending a replay session (to have it shown correctly in case it was in 'Transfer Mode'). + +2001-07-31: Version 0.86 + +- Modified the display of the channel group separators (thanks to Markus Lang + for this suggestion). 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); }