summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-01-31 11:42:05 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-01-31 11:42:05 +0100
commit6749e4ead9d394c9d86591366a2b49f46c4a3af9 (patch)
treebd7d7cb9999729118f840bc4c9060d5b17527233 /menu.c
parent58c4fd5a0b0a3b3523ba9fb5f7e4267a50d27159 (diff)
downloadvdr-6749e4ead9d394c9d86591366a2b49f46c4a3af9.tar.gz
vdr-6749e4ead9d394c9d86591366a2b49f46c4a3af9.tar.bz2
Modified behavior of the '8' key during replay
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
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()));