Fixed positioning the cursor in the Recordings menu when moving a recording between different volumes

This commit is contained in:
Klaus Schmidinger 2017-11-27 15:19:43 +01:00
parent 91774cf074
commit 990bc6a11f
2 changed files with 7 additions and 3 deletions

View File

@ -9210,3 +9210,5 @@ Video Disk Recorder Revision History
destroyed.
- Fixed a possible crash when moving a recording between different volumes (reported by
Matthias Senzel).
- Fixed positioning the cursor in the Recordings menu when moving a recording between
different volumes.

8
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 4.45 2017/11/26 15:07:00 kls Exp $
* $Id: menu.c 4.46 2017/11/27 15:19:07 kls Exp $
*/
#include "menu.h"
@ -2960,8 +2960,10 @@ void cMenuRecordings::Set(bool Refresh)
const char *CurrentRecording = *fileName ? *fileName : cReplayControl::LastReplayed();
cRecordings *Recordings = cRecordings::GetRecordingsWrite(recordingsStateKey); // write access is necessary for sorting!
cMenuRecordingItem *LastItem = NULL;
if (cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current()))
CurrentRecording = ri->Recording()->FileName();
if (!CurrentRecording) {
if (cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current()))
CurrentRecording = ri->Recording()->FileName();
}
int current = Current();
Clear();
GetRecordingsSortMode(DirectoryName());