mirror of https://github.com/mpv-player/mpv
input: filter out redundant mp_input_set_mouse_pos() calls
Prevents the OSC from showing up on start on Cocoa.
This commit is contained in:
parent
f9e2d5026e
commit
51120c9c7f
|
@ -702,7 +702,9 @@ void mp_input_set_mouse_pos(struct input_ctx *ictx, int x, int y)
|
|||
input_lock(ictx);
|
||||
MP_DBG(ictx, "mouse move %d/%d\n", x, y);
|
||||
|
||||
if (!ictx->opts->enable_mouse_movements) {
|
||||
if ((ictx->mouse_vo_x == x && ictx->mouse_vo_y == y) ||
|
||||
!ictx->opts->enable_mouse_movements)
|
||||
{
|
||||
input_unlock(ictx);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue