summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2007-04-30 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2007-04-30 18:00:00 +0200
commit82c3d65d4add4db4356a3b83c383adee9171098a (patch)
tree84649f98b5e5df517ba063bd0672a86c52ca586d /vdr.c
parentc10374af3eca00d9ec034d4235a20084d3c420b5 (diff)
downloadvdr-patch-lnbsharing-82c3d65d4add4db4356a3b83c383adee9171098a.tar.gz
vdr-patch-lnbsharing-82c3d65d4add4db4356a3b83c383adee9171098a.tar.bz2
Version 1.4.6-1vdr-1.4.6-1
- Fixed a busy loop in fast forward if the next video data file is missing (thanks to Reinhard Nissl). - Fixed handling frequencies in NitFilter::Process() (thanks to Anssi Hannula). - Fixed handling ChannelUp/Down keys if there is currently a replay running (thanks to Marco Schlüßler). - Increased the maximum number of CA system ids to cope with the AlphaCrypt CAM's version 3.11 firmware.
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr.c b/vdr.c
index a628cd0..7d971fb 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/vdr
*
- * $Id: vdr.c 1.282 2006/12/02 16:22:12 kls Exp $
+ * $Id: vdr.c 1.282.1.1 2007/04/30 09:48:23 kls Exp $
*/
#include <getopt.h>
@@ -947,7 +947,7 @@ int main(int argc, char *argv[])
case kChanDn:
if (!Interact)
Menu = new cDisplayChannel(NORMALKEY(key));
- else if (cDisplayChannel::IsOpen()) {
+ else if (cDisplayChannel::IsOpen() || cControl::Control()) {
Interact->ProcessKey(key);
continue;
}