diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-02-16 10:34:24 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-02-16 10:34:24 +0100 |
commit | 96df157057827185f94a150bf3c8a049f8bca369 (patch) | |
tree | d44eecc51781da5300267163a17577ac88950b0f | |
parent | 9dcfb9a2b840d1839c2f7ca9be88804e05e4ae7d (diff) | |
download | vdr-96df157057827185f94a150bf3c8a049f8bca369.tar.gz vdr-96df157057827185f94a150bf3c8a049f8bca369.tar.bz2 |
Fixed broken support for raw OSDs of plugins
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | vdr.c | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c10172fa..fe70f1af 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -543,3 +543,4 @@ Jan Ekholm <chakie@infa.abo.fi> Marcel Wiesweg <marcel.wiesweg@gmx.de> for pointing out a problem with high CPU load during replay + for reporting broken support for raw OSDs of plugins @@ -1957,7 +1957,7 @@ Video Disk Recorder Revision History - Timers are now processed even if an OSD menu is open (except for menus that explicitly handle timers). -2003-02-15: Version 1.1.25 +2003-02-16: Version 1.1.25 - Fixed high CPU load during replay (thanks Marcel Wiesweg for pointing out this one). @@ -1967,3 +1967,5 @@ Video Disk Recorder Revision History - Resetting the CAM slot in case communication breaks down. - Improved keyboard detection (thanks to Werner Fink). - Updated 'channels.conf.terr' (thanks to Andy Carter). +- Fixed broken support for raw OSDs of plugins (thanks to Marcel Wiesweg for + reporting this one). @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/people/kls/vdr * - * $Id: vdr.c 1.144 2003/02/15 15:36:01 kls Exp $ + * $Id: vdr.c 1.145 2003/02/16 10:34:24 kls Exp $ */ #include <getopt.h> @@ -469,7 +469,7 @@ int main(int argc, char *argv[]) } } // CAM control: - if (!Interface->IsOpen()) + if (!Menu && !Interface->IsOpen()) Menu = CamControl(); // User Input: cOsdObject *Interact = Menu ? Menu : cControl::Control(); |