diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-12-01 12:03:52 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-12-01 12:03:52 +0100 |
commit | 0f45a56f2862cb3df0a67af8ba392cd5befffd8c (patch) | |
tree | 68b876115d1ec377fddb05728fd66acd4e0c2297 | |
parent | 1d9eb9f7bcc73fdcdc74d472e483779882e94f4c (diff) | |
download | vdr-0f45a56f2862cb3df0a67af8ba392cd5befffd8c.tar.gz vdr-0f45a56f2862cb3df0a67af8ba392cd5befffd8c.tar.bz2 |
Fixed setting the OSD size in the 'Confirm' interface call
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 7 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | interface.c | 4 |
4 files changed, 11 insertions, 5 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 12154c81..dc5dd8f3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -55,6 +55,7 @@ Alberto Carraro <bertocar@tin.it> Deti Fliegl <deti@fliegl.de> for implementing the 'CurrentChannel' setup parameter + for fixing setting the OSD size in the 'Confirm' interface call Dave Chapman <dave@dchapman.com> for implementing support for the teletext PID @@ -866,7 +866,7 @@ Video Disk Recorder Revision History - The device /dev/video is now opened only if necessary (to GRAB an image), allowing other programs (like 'kvdr', for instance) to use that device. -2001-11-25: Version 0.99 +2001-11-25: Version 0.99pre1 - Fixed several channel definitions in 'channels.conf' (thanks to Thilo Wunderlich). @@ -878,3 +878,8 @@ Video Disk Recorder Revision History - Changed the maximum value for PIDs in channels.conf from 0xFFFE to 0x1FFF. - Fixed DVD audio sync problems (thanks to Andreas Schultz). - Fixed external AC3 replay for DVDs (thanks to Andreas Schultz). + +2001-12-01: Version 0.99pre2 + +- Fixed setting the OSD size in the 'Confirm' interface call (thanks to + Deti Fliegl). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.86 2001/11/25 15:57:08 kls Exp $ + * $Id: config.h 1.87 2001/12/01 12:00:37 kls Exp $ */ #ifndef __CONFIG_H @@ -18,7 +18,7 @@ #include "eit.h" #include "tools.h" -#define VDRVERSION "0.99" +#define VDRVERSION "0.99pre2" #define MAXPRIORITY 99 #define MAXLIFETIME 99 diff --git a/interface.c b/interface.c index 8695a367..becf92cd 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.44 2001/09/01 15:18:46 kls Exp $ + * $Id: interface.c 1.45 2001/12/01 11:59:43 kls Exp $ */ #include "interface.h" @@ -318,7 +318,7 @@ void cInterface::Error(const char *s) bool cInterface::Confirm(const char *s, int Seconds, bool WaitForTimeout) { - Open(); + Open(Setup.OSDwidth, -1); isyslog(LOG_INFO, "confirm: %s", s); Status(s, clrBlack, clrYellow); eKeys k = Wait(Seconds); |