mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 15:22:09 +00:00
player: indicate on the status line whether a seek is active
This is delayed by 300ms - before that, the status doesn't change. I feel like it would too annoying if the status line would "flicker" on normal seek by quickly showing and hiding the indicator.
This commit is contained in:
parent
e1ff914679
commit
5f042864f5
@ -168,7 +168,9 @@ void print_status(struct MPContext *mpctx)
|
||||
char *line = NULL;
|
||||
|
||||
// Playback status
|
||||
if (mpctx->paused_for_cache && !opts->pause) {
|
||||
if (!mpctx->restart_complete && mp_time_sec() - mpctx->start_timestamp > 0.3) {
|
||||
saddf(&line, "(...) ");
|
||||
} else if (mpctx->paused_for_cache && !opts->pause) {
|
||||
saddf(&line, "(Buffering) ");
|
||||
} else if (mpctx->paused) {
|
||||
saddf(&line, "(Paused) ");
|
||||
|
Loading…
Reference in New Issue
Block a user