summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index 6b9cfa66e6..79d9d6350c 100644
--- a/player/command.c
+++ b/player/command.c
@@ -734,7 +734,11 @@ static int mp_property_chapter(void *ctx, struct m_property *prop,
if (chapter < -1)
chapter = -1;
if (chapter >= get_chapter_count(mpctx) && step_all > 0) {
- mpctx->stop_play = PT_NEXT_ENTRY;
+ if (mpctx->opts->keep_open) {
+ seek_to_last_frame(mpctx);
+ } else {
+ mpctx->stop_play = PT_NEXT_ENTRY;
+ }
} else {
mp_seek_chapter(mpctx, chapter);
}