From 421b2be348ff4b5f0d2ff25ab413fda14f818e6c 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(+) (limited to 'video') diff --git a/video/out/w32_common.c b/video/out/w32_common.c index 89ddc823fb..518c8343e6 100644 --- a/video/out/w32_common.c +++ b/video/out/w32_common.c @@ -333,6 +333,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