summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-08-14 13:01:27 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-08-14 13:01:27 +0200
commit3f341aae50746f315af0f5ec88e81515bf459df7 (patch)
tree0e2d13cdd0dc2758e09e4c65ec20b34e973fbcba /menu.c
parent437fd984ed93c1814177f8aeff55d17ef26a53a9 (diff)
downloadvdr-3f341aae50746f315af0f5ec88e81515bf459df7.tar.gz
vdr-3f341aae50746f315af0f5ec88e81515bf459df7.tar.bz2
Fixed handling the frame number display if '7' is pressed before the first editing mark, or '9' after the last one
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 814caf86..fa541909 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.352 2005/08/14 12:02:08 kls Exp $
+ * $Id: menu.c 1.353 2005/08/14 12:57:48 kls Exp $
*/
#include "menu.h"
@@ -3596,10 +3596,11 @@ void cReplayControl::MarkJump(bool Forward)
int Current, Total;
if (GetIndex(Current, Total)) {
cMark *m = Forward ? marks.GetNext(Current) : marks.GetPrev(Current);
- if (m)
+ if (m) {
Goto(m->position, true);
+ displayFrames = true;
+ }
}
- displayFrames = true;
}
}