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 /interface.c | |
parent | 1d9eb9f7bcc73fdcdc74d472e483779882e94f4c (diff) | |
download | vdr-0f45a56f2862cb3df0a67af8ba392cd5befffd8c.tar.gz vdr-0f45a56f2862cb3df0a67af8ba392cd5befffd8c.tar.bz2 |
Fixed setting the OSD size in the 'Confirm' interface call
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |