summaryrefslogtreecommitdiffstats
path: root/player/lua
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-04 18:32:14 +0100
committerwm4 <wm4@nowhere>2014-12-04 18:32:14 +0100
commit7aa91af8a717f7289b007b75f72c0cb304a043d8 (patch)
tree8b1a244824ccdf91cc01ec4c67502a921f2c4700 /player/lua
parent231d5a32a9979f1a3552f1dec7440812425a281d (diff)
downloadmpv-7aa91af8a717f7289b007b75f72c0cb304a043d8.tar.bz2
mpv-7aa91af8a717f7289b007b75f72c0cb304a043d8.tar.xz
dvd, bd, osc: disable OSC while a menu is active
They interfere. It turns out that commit b6ca4a48 actually broke this in weird ways, but this solution is better anyway.
Diffstat (limited to 'player/lua')
-rw-r--r--player/lua/osc.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/player/lua/osc.lua b/player/lua/osc.lua
index f2485700b3..c4f6350a0c 100644
--- a/player/lua/osc.lua
+++ b/player/lua/osc.lua
@@ -1876,6 +1876,15 @@ mp.observe_property("fullscreen", "bool", function(name, val) state.fullscreen =
mp.observe_property("pause", "bool", pause_state)
mp.observe_property("cache-idle", "bool", cache_state)
+mp.observe_property("disc-menu-active", "bool", function(name, val)
+ if val == true then
+ hide_osc()
+ mp.disable_key_bindings("showhide")
+ else
+ mp.enable_key_bindings("showhide")
+ end
+end)
+
-- mouse show/hide bindings
mp.set_key_bindings({
{"mouse_move", function(e) process_event("mouse_move", nil) end},