(w32_wnd_proc) <WM_LBUTTONDOWN, WM_RBUTTONDOWN>:
<WM_LBUTTONUP, WM_RBUTTONUP>: Call signal_user_input in the cases where we preempt mouse_button_timer.
This commit is contained in:
parent
7d6f8c685e
commit
f5f69b6b47
1 changed files with 2 additions and 0 deletions
|
@ -3190,6 +3190,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
|
|||
}
|
||||
wmsg.dwModifiers = w32_get_modifiers ();
|
||||
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
|
||||
signal_user_input ();
|
||||
|
||||
/* Clear message buffer. */
|
||||
saved_mouse_button_msg.msg.hwnd = 0;
|
||||
|
@ -3247,6 +3248,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
|
|||
}
|
||||
wmsg.dwModifiers = w32_get_modifiers ();
|
||||
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
|
||||
signal_user_input ();
|
||||
|
||||
/* Always clear message buffer and cancel timer. */
|
||||
saved_mouse_button_msg.msg.hwnd = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue