From 3f10dbc102ffa08087961b158df8100f02a07b54 Mon Sep 17 00:00:00 2001 From: Erica Z Date: Wed, 6 Nov 2024 11:39:33 +0100 Subject: [PATCH] update time-pos in all cases when seeking otherwise the timeout won't notify of it if playback is paused --- src/ui/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/window.rs b/src/ui/window.rs index 809bdc9..f0ff339 100644 --- a/src/ui/window.rs +++ b/src/ui/window.rs @@ -655,9 +655,9 @@ impl Window { Err(err) => { event!(Level::INFO, "queuing seek to {new_position}: {err}"); self.imp().queued_seek.set(Some(new_position)); - self.notify("time-pos"); } } + self.notify("time-pos"); } pub fn playlist_move(&self, from: u32, to: u32) {