diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | myreplaycontrol.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- 2012-xx-xx: Version 1.2.3 +- [amair] Close replay OSD before starting cutter so that marks are saved to disk (submitted by mini73 @vdr-portal.de). - [amair] Always use VDR's cutting feature in VDR >=1.7.32. - [amair] Reduced calls to get the free disk space. - [amair] Use new MBperMinute() function in VDR >=1.7.27. diff --git a/myreplaycontrol.c b/myreplaycontrol.c index fbcd1bf..f43e9b6 100644 --- a/myreplaycontrol.c +++ b/myreplaycontrol.c @@ -48,6 +48,7 @@ eOSState myReplayControl::ProcessKey(eKeys Key) Skins.Message(mtError,tr("Recording already in cutter queue!")); else { + Hide(); // save marks cMarks _marks; #if VDRVERSNUM > 10713 cRecording Recording(filename); |