diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-04-30 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-04-30 18:00:00 +0200 |
commit | 82c3d65d4add4db4356a3b83c383adee9171098a (patch) | |
tree | 84649f98b5e5df517ba063bd0672a86c52ca586d /vdr.c | |
parent | c10374af3eca00d9ec034d4235a20084d3c420b5 (diff) | |
download | vdr-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |