Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion DOCS/man/osc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Configurable Options
Set to ``no`` to disable any special mouse wheel behavior.

``deadzonesize``
Default: 0.5
Default: 0.75

Size of the deadzone. The deadzone is an area that makes the mouse act
like leaving the window. Movement there won't make the OSC show up and
Expand All @@ -239,6 +239,7 @@ Configurable Options
of the window it will span. Values between 0.0 and 1.0, where 0 means the
OSC will always popup with mouse movement in the window, and 1 means the
OSC will only show up when the mouse hovers it. Default pre-0.21.0 was 0.
Default pre-0.42.0 was 0.5.

``minmousemove``
Default: 0
Expand Down
2 changes: 1 addition & 1 deletion player/lua/osc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ local user_opts = {
-- user, but internally negative is "always-on".
fadeduration = 200, -- duration of fade out (and fade in, if enabled) in ms, 0 = no fade
fadein = false, -- whether to enable fade-in effect
deadzonesize = 0.5, -- size of deadzone
deadzonesize = 0.75, -- size of deadzone
minmousemove = 0, -- minimum amount of pixels the mouse has to
-- move between ticks to make the OSC show up
layout = "bottombar",
Expand Down
Loading