summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2018-04-05 14:18:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2018-04-05 14:18:55 +0200
commit5b9b09a90e6c4fcb7f1af59368d6255dc7a3b942 (patch)
tree9b098c4ab2269594ca3dbd36c07239acd81e63fc /menu.c
parent43544435fa0083f2187f4388e442d87b3b954073 (diff)
downloadvdr-5b9b09a90e6c4fcb7f1af59368d6255dc7a3b942.tar.gz
vdr-5b9b09a90e6c4fcb7f1af59368d6255dc7a3b942.tar.bz2
Fixed updating the Schedule menu after editing a timer
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/menu.c b/menu.c
index aba69566..4805ff01 100644
--- a/menu.c
+++ b/menu.c
@@ -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;
}