summaryrefslogtreecommitdiffstats
path: root/osdep/macosx_events.h
diff options
context:
space:
mode:
authorAkemi <der.richter@gmx.de>2017-03-26 20:32:04 +0200
committerAkemi <der.richter@gmx.de>2017-03-26 20:38:26 +0200
commit063ca8f0fe48c281944c5307b1e8bbb11bb22822 (patch)
tree210cdaf74546f6578fbcedd47610f31773fe685a /osdep/macosx_events.h
parentf8a223b7aca08491e22438df0f1ea233d602907c (diff)
downloadmpv-063ca8f0fe48c281944c5307b1e8bbb11bb22822.tar.bz2
mpv-063ca8f0fe48c281944c5307b1e8bbb11bb22822.tar.xz
osx: fix key input in certain circumstances
for a reason i can just assume some key events can vanish from the event chain and mpv seems unresponsive. after quite some testing i could confirm that the events are present at the first entry point of the event chain, the sendEvent method of the Application, and that they vanish at a point afterwards. now we use that entry point to grab keyDown and keyUp events. we also stop propagating those key events to prevent the no key input' error sound. if we ever need the key events somewhere down the event chain we need to start propagating them again. though this is not necessary currently.
Diffstat (limited to 'osdep/macosx_events.h')
-rw-r--r--osdep/macosx_events.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/osdep/macosx_events.h b/osdep/macosx_events.h
index 019f24feef..9da3cb27bc 100644
--- a/osdep/macosx_events.h
+++ b/osdep/macosx_events.h
@@ -28,8 +28,6 @@ void cocoa_put_key(int keycode);
void cocoa_put_key_with_modifiers(int keycode, int modifiers);
void cocoa_put_key_event(void *event);
-void cocoa_start_event_monitor(void);
-
void cocoa_init_apple_remote(void);
void cocoa_uninit_apple_remote(void);