summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-25 10:29:37 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-25 10:29:37 +0100
commit6b747233362eccf5e6f9609e852f7f1cb42c49b1 (patch)
tree6ca88bd7bbd15966ad8d17138b176a0fa277d767 /menu.c
parent6a0a6c15c0393e837857b4e13fbe3518d2c2b2d5 (diff)
downloadvdr-6b747233362eccf5e6f9609e852f7f1cb42c49b1.tar.gz
vdr-6b747233362eccf5e6f9609e852f7f1cb42c49b1.tar.bz2
The "Ok" key in the "Jump" mode of the replay progress display now confirms the jump instead of closing the display
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index 23e0a0cb..bef2431d 100644
--- a/menu.c
+++ b/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: