mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed updating the Schedule menu after editing a timer
This commit is contained in:
parent
43544435fa
commit
5b9b09a90e
3
HISTORY
3
HISTORY
@ -9317,7 +9317,7 @@ Video Disk Recorder Revision History
|
|||||||
- Modified cMenuTimers::Delete() to avoid a lengthy lock on the Timers list while prompting
|
- Modified cMenuTimers::Delete() to avoid a lengthy lock on the Timers list while prompting
|
||||||
the user.
|
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).
|
- Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
|
||||||
- Fixed processing SVDRP client responses in case the caller doesn't want the actual
|
- 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).
|
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||||
- Fixed sluggish setting of editing marks and a jumping progress display with very
|
- Fixed sluggish setting of editing marks and a jumping progress display with very
|
||||||
short recordings (reported by Oliver Endriss).
|
short recordings (reported by Oliver Endriss).
|
||||||
|
- Fixed updating the Schedule menu after editing a timer.
|
||||||
|
19
menu.c
19
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "menu.h"
|
||||||
@ -1691,10 +1691,13 @@ eOSState cMenuWhatsOn::Record(void)
|
|||||||
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
|
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
|
||||||
if (HasSubMenu())
|
if (HasSubMenu())
|
||||||
CloseSubMenu();
|
CloseSubMenu();
|
||||||
if (Update())
|
|
||||||
Display();
|
|
||||||
SetHelpKeys(Channels);
|
|
||||||
}
|
}
|
||||||
|
if (Update()) {
|
||||||
|
LOCK_SCHEDULES_READ;
|
||||||
|
Display();
|
||||||
|
}
|
||||||
|
LOCK_CHANNELS_READ;
|
||||||
|
SetHelpKeys(Channels);
|
||||||
return osContinue;
|
return osContinue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1999,10 +2002,12 @@ eOSState cMenuSchedule::Record(void)
|
|||||||
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
|
Timers->SetSyncStateKey(StateKeySVDRPRemoteTimersPoll);
|
||||||
if (HasSubMenu())
|
if (HasSubMenu())
|
||||||
CloseSubMenu();
|
CloseSubMenu();
|
||||||
if (Update())
|
|
||||||
Display();
|
|
||||||
SetHelpKeys();
|
|
||||||
}
|
}
|
||||||
|
if (Update()) {
|
||||||
|
LOCK_SCHEDULES_READ;
|
||||||
|
Display();
|
||||||
|
}
|
||||||
|
SetHelpKeys();
|
||||||
return osContinue;
|
return osContinue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user