summaryrefslogtreecommitdiffstats
path: root/mpvcore
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore')
-rw-r--r--mpvcore/input/input.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mpvcore/input/input.c b/mpvcore/input/input.c
index 9609f96c25..d318a0d7c5 100644
--- a/mpvcore/input/input.c
+++ b/mpvcore/input/input.c
@@ -1586,6 +1586,14 @@ static void mp_input_feed_key(struct input_ctx *ictx, int code, double scale)
update_mouse_section(ictx);
return;
}
+ if (code == MP_KEY_MOUSE_LEAVE) {
+ update_mouse_section(ictx);
+ struct mp_cmd *cmd = get_cmd_from_keys(ictx, NULL, 1, (int[]){code});
+ if (cmd)
+ queue_add_tail(&ictx->cmd_queue, cmd);
+ ictx->got_new_events = true;
+ return;
+ }
double now = mp_time_sec();
int doubleclick_time = ictx->doubleclick_time;
// ignore system-doubleclick if we generate these events ourselves