summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-14 22:23:58 +0100
committerwm4 <wm4@nowhere>2014-01-14 22:24:07 +0100
commit635b2f2690a838ab0f8efd3b8f5c14b6118352e6 (patch)
tree8c4403b61adf6134a807ffe53c51b6450c7abf0f /player
parent5196b03fb28309e0ee316b4440313a562819bd28 (diff)
downloadmpv-635b2f2690a838ab0f8efd3b8f5c14b6118352e6.tar.bz2
mpv-635b2f2690a838ab0f8efd3b8f5c14b6118352e6.tar.xz
player: don't print status in --idle mode
Apparently this annoys certain users. Restores old behavior.
Diffstat (limited to 'player')
-rw-r--r--player/osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/osd.c b/player/osd.c
index 7999847720..b2062701ea 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -109,7 +109,7 @@ void print_status(struct MPContext *mpctx)
update_window_title(mpctx, false);
- if (opts->quiet) {
+ if (opts->quiet || !(mpctx->initialized_flags & INITIALIZED_PLAYBACK)) {
term_osd_set_status(mpctx, "");
return;
}