summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/osc.rst4
-rw-r--r--player/lua/osc.lua2
2 files changed, 5 insertions, 1 deletions
diff --git a/DOCS/man/osc.rst b/DOCS/man/osc.rst
index 6182b548bd..b04b6b0dcf 100644
--- a/DOCS/man/osc.rst
+++ b/DOCS/man/osc.rst
@@ -229,6 +229,10 @@ Configurable Options
| Default: yes
| Display a tooltip over the seekbar indicating time at mouse position.
+``seekbarstyle``
+ | Default: slider
+ | Sets the style of the seekbar, slider (diamond marker) or bar (fill)
+
Script Commands
~~~~~~~~~~~~~~~
diff --git a/player/lua/osc.lua b/player/lua/osc.lua
index 2e8d625b51..12baf7e541 100644
--- a/player/lua/osc.lua
+++ b/player/lua/osc.lua
@@ -25,7 +25,7 @@ local user_opts = {
seektooltip = true, -- display tooltip over the seekbar indicating time at mouse position
iamaprogrammer = false, -- use native mpv values and disable OSC internal playlist management (and some functions that depend on it)
layout = "box",
- seekbarstyle = "slider", -- seekbar style, slider (diamond marker) and bar (fill)
+ seekbarstyle = "slider", -- seekbar style, slider (diamond marker) or bar (fill)
}
-- read options from config and command-line