From d26803cba00f9ecfe7c1c0914f133e775638183b Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 22 May 2015 20:02:47 +0200 Subject: command: deprecate the "length" property It collides with the --length option. --- player/lua/osc.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'player/lua') diff --git a/player/lua/osc.lua b/player/lua/osc.lua index 4aade7c4b6..2064ba7e47 100644 --- a/player/lua/osc.lua +++ b/player/lua/osc.lua @@ -1482,7 +1482,7 @@ function osc_init() ne.enabled = not (mp.get_property("percent-pos") == nil) ne.slider.markerF = function () - local duration = mp.get_property_number("length", nil) + local duration = mp.get_property_number("duration", nil) if not (duration == nil) then local chapters = mp.get_property_native("chapter-list", {}) local markers = {} @@ -1497,7 +1497,7 @@ function osc_init() ne.slider.posF = function () return mp.get_property_number("percent-pos", nil) end ne.slider.tooltipF = function (pos) - local duration = mp.get_property_number("length", nil) + local duration = mp.get_property_number("duration", nil) if not ((duration == nil) or (pos == nil)) then possec = duration * (pos / 100) return mp.format_time(possec) @@ -1542,8 +1542,8 @@ function osc_init() -- tc_right (total/remaining time) ne = new_element("tc_right", "button") - ne.visible = (not (mp.get_property("length") == nil)) - and (mp.get_property_number("length") > 0) + ne.visible = (not (mp.get_property("duration") == nil)) + and (mp.get_property_number("duration") > 0) ne.content = function () if (state.rightTC_trem) then if state.tc_ms then @@ -1555,7 +1555,7 @@ function osc_init() if state.tc_ms then return (mp.get_property_osd("length/full")) else - return (mp.get_property_osd("length")) + return (mp.get_property_osd("duration")) end end end -- cgit v1.2.3