summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-11-03 14:41:18 +0100
committerwm4 <wm4@nowhere>2017-11-03 14:41:18 +0100
commit36630585f60813c5272de255c08e09d0436c2243 (patch)
tree786ac61e7bde9aabf58ce2c51b241d1dec799b58 /player
parent57248915fa636778c007561bb73cff23c4038ab9 (diff)
downloadmpv-36630585f60813c5272de255c08e09d0436c2243.tar.bz2
mpv-36630585f60813c5272de255c08e09d0436c2243.tar.xz
osc: make cycling visibility an input.conf key binding
As builtin script, it should not register global key bindings, and add them to input.conf instead. This is similar to what stats.lua does.
Diffstat (limited to 'player')
-rw-r--r--player/lua/osc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/lua/osc.lua b/player/lua/osc.lua
index 8591536937..6bd596ce25 100644
--- a/player/lua/osc.lua
+++ b/player/lua/osc.lua
@@ -2387,6 +2387,6 @@ end
visibility_mode(user_opts.visibility, true)
mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding("del", function() visibility_mode("cycle") end)
+mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
set_virt_mouse_area(0, 0, 0, 0, "input")