From 6749e4ead9d394c9d86591366a2b49f46c4a3af9 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 31 Jan 2015 11:42:05 +0100 Subject: Modified behavior of the '8' key during replay --- menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'menu.c') diff --git a/menu.c b/menu.c index f20ff051..5e8899ff 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 3.32 2015/01/30 12:27:37 kls Exp $ + * $Id: menu.c 3.33 2015/01/31 11:36:08 kls Exp $ */ #include "menu.h" @@ -5415,7 +5415,7 @@ void cReplayControl::EditTest(void) if (!m) m = marks.GetNext(Current); if (m) { - if ((m->Index() & 0x01) == 0) // this is a "start" mark, so get the next "end" mark + if ((m->Index() & 0x01) != 0 && !Setup.SkipEdited) // when skipping edited parts we also need to jump to end marks m = marks.Next(m); if (m) { Goto(m->Position() - SecondsToFrames(3, FramesPerSecond())); -- cgit v1.2.3