mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed getting the info of a newly edited recording
This commit is contained in:
parent
6b9c5aa1ac
commit
68f0f24670
@ -3301,6 +3301,8 @@ Matthias Senzel <matthias.senzel@t-online.de>
|
||||
timer, even if it doesn't contain any subfolders
|
||||
for reporting a possible locking problem in cMenuPathEdit::ApplyChanges() when the
|
||||
lock is held while the error message is displayed
|
||||
for reporting that the info of a newly edited recording was not available immediately
|
||||
after starting the editing process
|
||||
|
||||
Marek Nazarko <mnazarko@gmail.com>
|
||||
for translating OSD texts to the Polish language
|
||||
|
1
HISTORY
1
HISTORY
@ -9269,3 +9269,4 @@ Video Disk Recorder Revision History
|
||||
- When a timer is newly created in the Timers menu, it now immediately appears at the
|
||||
correct position in the list, rather than first being added at the end and then
|
||||
jumping to the proper offset.
|
||||
- Fixed getting the info of a newly edited recording (reported by Matthias Senzel).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: recording.c 4.18 2018/01/18 10:13:29 kls Exp $
|
||||
* $Id: recording.c 4.19 2018/02/10 13:24:04 kls Exp $
|
||||
*/
|
||||
|
||||
#include "recording.h"
|
||||
@ -1908,9 +1908,9 @@ bool cRecordingsHandlerEntry::Active(cRecordings *Recordings)
|
||||
// Now check if there is something to start:
|
||||
if ((Usage() & ruPending) != 0) {
|
||||
if ((Usage() & ruCut) != 0) {
|
||||
Recordings->AddByName(FileNameDst(), false);
|
||||
cutter = new cCutter(FileNameSrc());
|
||||
cutter->Start();
|
||||
Recordings->AddByName(FileNameDst(), false);
|
||||
}
|
||||
else if ((Usage() & (ruMove | ruCopy)) != 0) {
|
||||
copier = new cDirCopier(FileNameSrc(), FileNameDst());
|
||||
|
Loading…
Reference in New Issue
Block a user