diff options
Diffstat (limited to 'player/osd.c')
-rw-r--r-- | player/osd.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/player/osd.c b/player/osd.c index 70c1a0ddaf..93340d78c2 100644 --- a/player/osd.c +++ b/player/osd.c @@ -435,9 +435,12 @@ static void add_seek_osd_messages(struct MPContext *mpctx) set_osd_bar_chapters(mpctx, OSD_BAR_SEEK); } if (mpctx->add_osd_seek_info & OSD_SEEK_INFO_TEXT) { - mp_osd_msg_t *msg = add_osd_msg(mpctx, OSD_MSG_TEXT, 1, - mpctx->opts->osd_duration); - msg->show_position = true; + // Never in term-osd mode + if (mpctx->video_out && mpctx->opts->term_osd != 1) { + mp_osd_msg_t *msg = add_osd_msg(mpctx, OSD_MSG_TEXT, 1, + mpctx->opts->osd_duration); + msg->show_position = true; + } } if (mpctx->add_osd_seek_info & OSD_SEEK_INFO_CHAPTER_TEXT) { char *chapter = chapter_display_name(mpctx, get_current_chapter(mpctx)); |