From fd44d3280acbe85373aac7839416f8f577905191 Mon Sep 17 00:00:00 2001 From: Erica Z Date: Mon, 11 Nov 2024 12:00:43 +0100 Subject: [PATCH] fix seek command --- 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 42c8abb..8cfcd94 100644 --- a/src/ui/window.rs +++ b/src/ui/window.rs @@ -767,7 +767,7 @@ impl Window { State::Active | State::Seeking => { self.imp() .mpv - .command(["seek", &new_position.to_string(), "absolute", "exact"]) + .command(["seek", &new_position.to_string(), "absolute+exact"]) .unwrap(); }