diff options
author | pavelxdd <pavel.otchertsov@gmail.com> | 2017-12-25 05:11:58 +0300 |
---|---|---|
committer | Martin Herkt <652892+lachs0r@users.noreply.github.com> | 2017-12-26 01:18:26 +0100 |
commit | 5f8402e3ecd87bbc23eafc89848e449a885bcf4c (patch) | |
tree | 62bb2d4144f9328f5e083132b4b2a486d49bc08f /player | |
parent | 69ae23fdd1e39f4e7aa30082e36cc635d954bccf (diff) |
osc: make seek ranges rendering optional
This commit adds a new osc setting `seekranges` to control
the seek ranges visibility.
Diffstat (limited to 'player')
-rw-r--r-- | player/lua/osc.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/player/lua/osc.lua b/player/lua/osc.lua index a0f37f445f..1be24556f3 100644 --- a/player/lua/osc.lua +++ b/player/lua/osc.lua @@ -39,6 +39,7 @@ local user_opts = { tooltipborder = 1, -- border of tooltip in bottom/topbar timetotal = false, -- display total time instead of remaining time? timems = false, -- display timecodes with milliseconds? + seekranges = true, -- display seek ranges? visibility = "auto", -- only used at init to set visibility_mode(...) boxmaxchars = 80, -- title crop threshold for box layout } @@ -1757,6 +1758,9 @@ function osc_init() end end ne.slider.seekRangesF = function() + if not (user_opts.seekranges) then + return nil + end local cache_state = mp.get_property_native("demuxer-cache-state", nil) if not cache_state then return nil |