diff options
Diffstat (limited to 'player/osd.c')
-rw-r--r-- | player/osd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/player/osd.c b/player/osd.c index 094e99e5b6..e3fe9e1c9b 100644 --- a/player/osd.c +++ b/player/osd.c @@ -155,7 +155,9 @@ static void print_status(struct MPContext *mpctx) if (!opts->use_terminal) return; - if (opts->quiet || !(mpctx->initialized_flags & INITIALIZED_PLAYBACK)) { + if (opts->quiet || !(mpctx->initialized_flags & INITIALIZED_PLAYBACK) || + !mpctx->playing_msg_shown) + { term_osd_set_status(mpctx, ""); return; } |