summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index aa027fc349..6f876d1898 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -601,5 +601,7 @@ void vo_mouse_movement(struct vo *vo, int posx, int posy)
{
if (!vo->opts->enable_mouse_movements)
return;
- mp_input_set_mouse_pos(vo->input_ctx, posx, posy);
+ float p[2] = {posx, posy};
+ vo_control(vo, VOCTRL_WINDOW_TO_OSD_COORDS, p);
+ mp_input_set_mouse_pos(vo->input_ctx, p[0], p[1]);
}