mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-12-26 23:06:44 +01:00
Fixed Channel+/Channel- keys stopping replay of a recording
This commit is contained in:
1
HISTORY
1
HISTORY
@@ -10134,3 +10134,4 @@ Video Disk Recorder Revision History
|
||||
by Stefan Hofmann).
|
||||
- Fixed updating the index when cutting a recording again (thanks to Matthias Senzel).
|
||||
- Speeded up determining the timer status of events in the Schedules menus.
|
||||
- Fixed Channel+/Channel- keys stopping replay of a recording.
|
||||
|
||||
4
vdr.c
4
vdr.c
@@ -22,7 +22,7 @@
|
||||
*
|
||||
* The project's page is at https://www.tvdr.de
|
||||
*
|
||||
* $Id: vdr.c 5.18 2024/12/02 12:40:56 kls Exp $
|
||||
* $Id: vdr.c 5.19 2025/06/20 13:44:13 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
@@ -1313,7 +1313,7 @@ int main(int argc, char *argv[])
|
||||
Interact->ProcessKey(key);
|
||||
continue;
|
||||
}
|
||||
else
|
||||
else if (!cDevice::PrimaryDevice()->Replaying() || cDevice::PrimaryDevice()->Transferring())
|
||||
cDevice::SwitchChannel(NORMALKEY(key) == kChanUp ? 1 : -1);
|
||||
break;
|
||||
// Volume control:
|
||||
|
||||
Reference in New Issue
Block a user