mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added 'repeat' function keys '7' and '9' ("jump to mark") in replay mode
This commit is contained in:
parent
c89a686254
commit
903148b5ad
@ -494,6 +494,7 @@ Oliver Endriss <o.endriss@gmx.de>
|
||||
for reporting and helping to debug dropping out of replay mode while viewing a
|
||||
recording that is still going on
|
||||
for fixing checking for VIDEO_STREAM_S in cRemux::SetBrokenLink()
|
||||
for suggesting to add 'repeat' function keys '7' and '9'
|
||||
|
||||
Reinhard Walter Buchner <rw.buchner@freenet.de>
|
||||
for adding some satellites to 'sources.conf'
|
||||
|
2
HISTORY
2
HISTORY
@ -2393,3 +2393,5 @@ Video Disk Recorder Revision History
|
||||
not loaded (suggested by Alexander Wetzel).
|
||||
- Fixed checking for VIDEO_STREAM_S in cRemux::SetBrokenLink() (thanks to Oliver
|
||||
Endriss).
|
||||
- Added 'repeat' function keys '7' and '9' ("jump to mark") in replay mode
|
||||
(suggested by Oliver Endriss).
|
||||
|
4
menu.c
4
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.271 2003/09/06 10:26:45 kls Exp $
|
||||
* $Id: menu.c 1.272 2003/09/14 10:49:28 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -3664,7 +3664,9 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
|
||||
switch (Key) {
|
||||
// Editing:
|
||||
case kMarkToggle: MarkToggle(); break;
|
||||
case kMarkJumpBack|k_Repeat:
|
||||
case kMarkJumpBack: MarkJump(false); break;
|
||||
case kMarkJumpForward|k_Repeat:
|
||||
case kMarkJumpForward: MarkJump(true); break;
|
||||
case kMarkMoveBack|k_Repeat:
|
||||
case kMarkMoveBack: MarkMove(false); break;
|
||||
|
Loading…
Reference in New Issue
Block a user