diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-27 16:00:31 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-27 16:00:31 +0100 |
commit | 8fbc28349bf3a3871235401c6a2341d97f5e1acb (patch) | |
tree | 9a4fe8523f8fad2c0d3ccf19d233c01fe47ff760 | |
parent | 3669bbf375899b609a308c3d02dd4b20ff0cfc79 (diff) | |
download | vdr-8fbc28349bf3a3871235401c6a2341d97f5e1acb.tar.gz vdr-8fbc28349bf3a3871235401c6a2341d97f5e1acb.tar.bz2 |
Status messages are now displayed centered
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | interface.c | 10 |
2 files changed, 8 insertions, 3 deletions
@@ -918,3 +918,4 @@ Video Disk Recorder Revision History per minute. - Activating the "Recordings" menu now displays "scanning recordings..." to give the user some feedback in case this takes longer. +- Status messages are now displayed centered. diff --git a/interface.c b/interface.c index 6fd5b214..59652244 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.46 2002/01/26 11:09:58 kls Exp $ + * $Id: interface.c 1.47 2002/01/27 16:00:31 kls Exp $ */ #include "interface.h" @@ -292,8 +292,12 @@ void cInterface::Status(const char *s, eDvbColor FgColor, eDvbColor BgColor) { int Line = (abs(height) == 1) ? 0 : -2; ClearEol(0, Line, s ? BgColor : clrBackground); - if (s) - Write(0, Line, s, FgColor, BgColor); + if (s) { + int x = (Width() - strlen(s)) / 2; + if (x < 0) + x = 0; + Write(x, Line, s, FgColor, BgColor); + } } void cInterface::Info(const char *s) |