diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-27 12:36:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-27 12:36:21 +0200 |
commit | cade7eb70ef4349394bdaaec78c211134185b973 (patch) | |
tree | ac11ce135ce1aca9505ba263c3517b6e18028c1b /interface.c | |
parent | 749b5090ab7aee382945e69ad4b61606e0c42512 (diff) | |
download | vdr-cade7eb70ef4349394bdaaec78c211134185b973.tar.gz vdr-cade7eb70ef4349394bdaaec78c211134185b973.tar.bz2 |
Avoiding short display of the main menu if a plugin displays its own OSD
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/interface.c b/interface.c index 9245c85f..6431f911 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.63 2003/04/12 14:17:49 kls Exp $ + * $Id: interface.c 1.64 2003/04/27 12:08:52 kls Exp $ */ #include "interface.h" @@ -56,7 +56,8 @@ void cInterface::Close(void) eKeys cInterface::GetKey(bool Wait) { - Flush(); + if (!cRemote::HasKeys()) + Flush(); if (SVDRP) { if (SVDRP->Process()) Wait = false; |