summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/osc.rst5
-rw-r--r--player/lua/osc.lua4
2 files changed, 9 insertions, 0 deletions
diff --git a/DOCS/man/osc.rst b/DOCS/man/osc.rst
index eb15056094..5e5568ce7a 100644
--- a/DOCS/man/osc.rst
+++ b/DOCS/man/osc.rst
@@ -272,6 +272,11 @@ Configurable Options
Display timecodes with milliseconds
+``seekranges``
+ Default: yes
+
+ Display seekable ranges on the seekbar
+
``visibility``
Default: auto (auto hide/show on mouse move)
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