Fixed updating the Schedule menu after editing a timer

This commit is contained in:
Klaus Schmidinger 2018-04-05 14:18:55 +02:00
parent 43544435fa
commit 5b9b09a90e
2 changed files with 14 additions and 8 deletions

View File

@ -9317,7 +9317,7 @@ Video Disk Recorder Revision History
- Modified cMenuTimers::Delete() to avoid a lengthy lock on the Timers list while prompting
the user.
2018-04-03: Version 2.4.0
2018-04-05: Version 2.4.0
- Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
- Fixed processing SVDRP client responses in case the caller doesn't want the actual
@ -9337,3 +9337,4 @@ Video Disk Recorder Revision History
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed sluggish setting of editing marks and a jumping progress display with very
short recordings (reported by Oliver Endriss).
- Fixed updating the Schedule menu after editing a timer.

19
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.71 2018/04/02 13:41:39 kls Exp $
* $Id: menu.c 4.72 2018/04/05 14:18:18 kls Exp $
*/
#include "menu.h"
@ -1691,10 +1691,13 @@ eOSState cMenuWhatsOn::Record(void)
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
if (HasSubMenu())
CloseSubMenu();
if (Update())
Display();
SetHelpKeys(Channels);
}
if (Update()) {
LOCK_SCHEDULES_READ;
Display();
}
LOCK_CHANNELS_READ;
SetHelpKeys(Channels);
return osContinue;
}
@ -1999,10 +2002,12 @@ eOSState cMenuSchedule::Record(void)
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
if (HasSubMenu())
CloseSubMenu();
if (Update())
Display();
SetHelpKeys();
}
if (Update()) {
LOCK_SCHEDULES_READ;
Display();
}
SetHelpKeys();
return osContinue;
}