Changed message colors

This commit is contained in:
Klaus Schmidinger
2001-07-28 15:03:22 +02:00
parent 349b05400a
commit 97ac615490
2 changed files with 5 additions and 3 deletions

View File

@@ -599,3 +599,5 @@ Video Disk Recorder Revision History
- Updated 'channels.conf' for Premiere World (thanks to Helmut Sch<63>chner). - Updated 'channels.conf' for Premiere World (thanks to Helmut Sch<63>chner).
Check your timers if you use this channels.conf file, since the sequence of Check your timers if you use this channels.conf file, since the sequence of
several PW channels has been changed. several PW channels has been changed.
- Changed the color of "Info" messages to "black on green" and that of the
confirmation messages (like "Delete...") to "black on yellow".

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: interface.c 1.38 2001/07/27 11:39:53 kls Exp $ * $Id: interface.c 1.39 2001/07/28 14:57:52 kls Exp $
*/ */
#include "interface.h" #include "interface.h"
@@ -296,7 +296,7 @@ void cInterface::Info(const char *s)
{ {
Open(Setup.OSDwidth, -1); Open(Setup.OSDwidth, -1);
isyslog(LOG_INFO, "info: %s", s); isyslog(LOG_INFO, "info: %s", s);
Status(s, clrWhite, clrGreen); Status(s, clrBlack, clrGreen);
Wait(); Wait();
Status(NULL); Status(NULL);
Close(); Close();
@@ -316,7 +316,7 @@ bool cInterface::Confirm(const char *s)
{ {
Open(); Open();
isyslog(LOG_INFO, "confirm: %s", s); isyslog(LOG_INFO, "confirm: %s", s);
Status(s, clrBlack, clrGreen); Status(s, clrBlack, clrYellow);
bool result = Wait(10) == kOk; bool result = Wait(10) == kOk;
Status(NULL); Status(NULL);
Close(); Close();