Commit Message
Hello list,
I was always stumbling over the behaviour of jumping in recordings (red
button): The OK-button does not confirm the jump but aborts it which I
think is rather unlogical.
The appended patch gives the OK-Button the same behaviour as the "down"
and "pause" buttons, which means it jumps to the requested position and
pauses the replay.
If no one complains I would like Klaus to integrate this patch into vdr.
Christoph
@@ -3740,8 +3740,9 @@
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: