mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed jumping to an absolute position via the Red key in case replay was paused
This commit is contained in:
parent
a4169ceb22
commit
ff2f39b440
@ -3215,3 +3215,7 @@ Mariusz Bialonczyk <manio@skyboo.net>
|
||||
Christian Winkler <winkler_chr@yahoo.de>
|
||||
for reporting a problem with transfer mode on full featured DVB cards for encrypted
|
||||
channels that have no audio pid
|
||||
|
||||
Dieter Ferdinand <dieter.ferdinand@gmx.de>
|
||||
for reporting a problem with jumping to an absolute position via the Red key in
|
||||
case replay was paused
|
||||
|
4
HISTORY
4
HISTORY
@ -7916,8 +7916,10 @@ Video Disk Recorder Revision History
|
||||
- The APIVERSION has been increased to 2.0.6 due to the changes to pat.h, sdt.h and
|
||||
the functional modification to cFont::CreateFont().
|
||||
|
||||
2014-04-13: Version 2.0.7
|
||||
2015-01-13: Version 2.0.7
|
||||
|
||||
- Fixed a possible division by zero in frame rate detection.
|
||||
- Fixed a bug in the Makefile when installing plugins with LCLBLD=1 (thanks to
|
||||
Stefan Huelswitt).
|
||||
- Fixed jumping to an absolute position via the Red key in case replay was paused
|
||||
(reported by Dieter Ferdinand).
|
||||
|
7
menu.c
7
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 2.82.1.8 2014/02/26 11:42:28 kls Exp $
|
||||
* $Id: menu.c 2.82.1.9 2015/01/13 09:52:59 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -4743,7 +4743,10 @@ void cReplayControl::TimeSearchProcess(eKeys Key)
|
||||
case kOk:
|
||||
if (timeSearchPos > 0) {
|
||||
Seconds = min(Total - STAY_SECONDS_OFF_END, Seconds);
|
||||
Goto(SecondsToFrames(Seconds, FramesPerSecond()), Key == kDown || Key == kPause || Key == kOk);
|
||||
bool Still = Key == kDown || Key == kPause || Key == kOk;
|
||||
Goto(SecondsToFrames(Seconds, FramesPerSecond()), Still);
|
||||
if (!Still)
|
||||
Play();
|
||||
}
|
||||
timeSearchActive = false;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user