summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/w32_common.c5
1 files changed, 5 insertions, 0 deletions
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);