From f09bcc3eef18df1bf32d81ef4d3d33e5daee5cc6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 20 Aug 2007 22:03:06 +0200 Subject: [PATCH] user32/tests: Allow WM_MOUSEACTIVATE in the mouse hover test for compatibility with X11 focus policy. --- dlls/user32/tests/msg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index ef2cd6f3aa1..a6032525bea 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -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 },