diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-28 15:03:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-28 15:03:22 +0200 |
commit | 97ac61549094cafdc8dcb43946adc947adf843e9 (patch) | |
tree | 10fc8a1d445113b499de80d5447a9e6e503f2024 | |
parent | 349b05400a50ed0d4bf0cea076ed4a29708388d8 (diff) | |
download | vdr-97ac61549094cafdc8dcb43946adc947adf843e9.tar.gz vdr-97ac61549094cafdc8dcb43946adc947adf843e9.tar.bz2 |
Changed message colors
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | interface.c | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -599,3 +599,5 @@ Video Disk Recorder Revision History - Updated 'channels.conf' for Premiere World (thanks to Helmut Schächner). Check your timers if you use this channels.conf file, since the sequence of 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". diff --git a/interface.c b/interface.c index 572a41b8..03dca06f 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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" @@ -296,7 +296,7 @@ void cInterface::Info(const char *s) { Open(Setup.OSDwidth, -1); isyslog(LOG_INFO, "info: %s", s); - Status(s, clrWhite, clrGreen); + Status(s, clrBlack, clrGreen); Wait(); Status(NULL); Close(); @@ -316,7 +316,7 @@ bool cInterface::Confirm(const char *s) { Open(); isyslog(LOG_INFO, "confirm: %s", s); - Status(s, clrBlack, clrGreen); + Status(s, clrBlack, clrYellow); bool result = Wait(10) == kOk; Status(NULL); Close(); |