From 6402b9dc38729d76a5e4dbb81efd26ab136bc1c1 Mon Sep 17 00:00:00 2001 From: James Ross-Gowan Date: Fri, 21 Feb 2014 01:21:17 +1100 Subject: w32_common: capture mouse input Mouse buttons can get stuck down if the button is pressed inside the video window and released outside. Avoid this by capturing mouse input when a button is pressed. --- video/out/w32_common.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/video/out/w32_common.c b/video/out/w32_common.c index 5b8771fd82..d93592d61e 100644 --- a/video/out/w32_common.c +++ b/video/out/w32_common.c @@ -465,6 +465,11 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, return 0; } } + + if (mouse_button & MP_KEY_STATE_DOWN) + SetCapture(w32->window); + else + ReleaseCapture(); } return DefWindowProcW(hWnd, message, wParam, lParam); -- cgit v1.2.3