osc.lua: don't use legacy argument for seeking

Deprecated since mpv 0.9. Use the flags instead.
No need to specify flags for relative seek since it's the default.
This commit is contained in:
nanahi 2024-06-18 08:38:42 -04:00 committed by Dudemanguy
parent bc5ab97d9a
commit 8df4cb5e21
1 changed files with 5 additions and 5 deletions

View File

@ -1980,11 +1980,11 @@ local function osc_init()
ne.softrepeat = true ne.softrepeat = true
ne.content = "\238\128\132" ne.content = "\238\128\132"
ne.eventresponder["mbtn_left_down"] = ne.eventresponder["mbtn_left_down"] =
function () mp.commandv("seek", -5, "relative", "keyframes") end function () mp.commandv("seek", -5) end
ne.eventresponder["shift+mbtn_left_down"] = ne.eventresponder["shift+mbtn_left_down"] =
function () mp.commandv("frame-back-step") end function () mp.commandv("frame-back-step") end
ne.eventresponder["mbtn_right_down"] = ne.eventresponder["mbtn_right_down"] =
function () mp.commandv("seek", -30, "relative", "keyframes") end function () mp.commandv("seek", -30) end
--skipfrwd --skipfrwd
ne = new_element("skipfrwd", "button") ne = new_element("skipfrwd", "button")
@ -1992,11 +1992,11 @@ local function osc_init()
ne.softrepeat = true ne.softrepeat = true
ne.content = "\238\128\133" ne.content = "\238\128\133"
ne.eventresponder["mbtn_left_down"] = ne.eventresponder["mbtn_left_down"] =
function () mp.commandv("seek", 10, "relative", "keyframes") end function () mp.commandv("seek", 10) end
ne.eventresponder["shift+mbtn_left_down"] = ne.eventresponder["shift+mbtn_left_down"] =
function () mp.commandv("frame-step") end function () mp.commandv("frame-step") end
ne.eventresponder["mbtn_right_down"] = ne.eventresponder["mbtn_right_down"] =
function () mp.commandv("seek", 60, "relative", "keyframes") end function () mp.commandv("seek", 60) end
--ch_prev --ch_prev
ne = new_element("ch_prev", "button") ne = new_element("ch_prev", "button")
@ -2172,7 +2172,7 @@ local function osc_init()
end end
ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
function (element) mp.commandv("seek", get_slider_value(element), function (element) mp.commandv("seek", get_slider_value(element),
"absolute-percent", "exact") end "absolute-percent+exact") end
ne.eventresponder["reset"] = ne.eventresponder["reset"] =
function (element) element.state.lastseek = nil end function (element) element.state.lastseek = nil end