mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The "Ok" key in the "Jump" mode of the replay progress display now confirms the jump instead of closing the display
This commit is contained in:
parent
6a0a6c15c0
commit
6b74723336
@ -1758,3 +1758,7 @@ Ronny Kornexl <ronny.kornexl@online.de>
|
||||
|
||||
Bárta Vladimír <vladimir.barta@k2atmitec.cz>
|
||||
for translating OSD texts to the Czech language
|
||||
|
||||
Christoph Haubrich <christoph1.haubrich@arcor.de>
|
||||
for making the "Ok" key in the "Jump" mode of the replay progress display confirm
|
||||
the jump instead of closing the display
|
||||
|
2
HISTORY
2
HISTORY
@ -4369,3 +4369,5 @@ Video Disk Recorder Revision History
|
||||
one that fits the input (thanks to Joachim Wilke).
|
||||
- Fixed the 'libsi' function CharArray::checkSize(), which made a previous workaround
|
||||
in libsi/descriptor.c obsolete (thanks to Marcel Wiesweg).
|
||||
- The "Ok" key in the "Jump" mode of the replay progress display now confirms the
|
||||
jump instead of closing the display (thanks to Christoph Haubrich).
|
||||
|
5
menu.c
5
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 1.415 2006/02/24 14:56:18 kls Exp $
|
||||
* $Id: menu.c 1.416 2006/02/25 10:27:03 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -3938,8 +3938,9 @@ void cReplayControl::TimeSearchProcess(eKeys Key)
|
||||
case kUp:
|
||||
case kPause:
|
||||
case kDown:
|
||||
case kOk:
|
||||
Seconds = min(Total - STAY_SECONDS_OFF_END, Seconds);
|
||||
Goto(Seconds * FRAMESPERSEC, Key == kDown || Key == kPause);
|
||||
Goto(Seconds * FRAMESPERSEC, Key == kDown || Key == kPause || Key == kOk);
|
||||
timeSearchActive = false;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user