From 8609bfc41d115d9ce10f2707ed9deee0d9ff271c Mon Sep 17 00:00:00 2001 From: Erica Z Date: Mon, 11 Nov 2024 12:02:04 +0100 Subject: [PATCH] is default --- 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 8cfcd94..d831357 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"]) .unwrap(); }