fix seek command

This commit is contained in:
Erica Z 2024-11-11 12:00:43 +01:00
parent 4060213e80
commit fd44d3280a

View file

@ -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();
}