Commit f09bcc3e authored by Alexandre Julliard's avatar Alexandre Julliard

user32/tests: Allow WM_MOUSEACTIVATE in the mouse hover test for compatibility…

user32/tests: Allow WM_MOUSEACTIVATE in the mouse hover test for compatibility with X11 focus policy.
parent 1b6533bc
......@@ -8421,6 +8421,8 @@ static void test_quit_message(void)
}
static const struct message WmMouseHoverSeq[] = {
{ WM_MOUSEACTIVATE, sent|optional }, /* we can get those when moving the mouse in focus-follow-mouse mode under X11 */
{ WM_MOUSEACTIVATE, sent|optional },
{ WM_TIMER, sent|optional }, /* XP sends it */
{ WM_SYSTIMER, sent },
{ WM_MOUSEHOVER, sent|wparam, 0 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment