Don't process raw input when the window is being dragged or clicked on.
parent
0fd54f91f4
commit
5d455cabf9
|
@ -731,6 +731,10 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|||
}
|
||||
}
|
||||
|
||||
if (data->in_title_click || data->focus_click_pending) {
|
||||
break;
|
||||
}
|
||||
|
||||
GetRawInputData(hRawInput, RID_INPUT, &inp, &size, sizeof(RAWINPUTHEADER));
|
||||
|
||||
/* Mouse data (ignoring synthetic mouse events generated for touchscreens) */
|
||||
|
|
Loading…
Reference in New Issue