(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:
Jason Rumney 2006-04-26 17:54:41 +00:00
parent 7d6f8c685e
commit f5f69b6b47

View file

@ -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;