Commit 76a9f965 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

comctl32/tests: Move the cursor over the treeview to avoid random mouse move messages.

parent a47343b9
......@@ -2809,7 +2809,7 @@ static void test_right_click(void)
HTREEITEM selected;
RECT rc;
LRESULT result;
POINT pt;
POINT pt, orig_pos;
hTree = create_treeview_control(0);
fill_tree(hTree);
......@@ -2828,6 +2828,8 @@ static void test_right_click(void)
pt.x = (rc.left + rc.right) / 2;
pt.y = (rc.top + rc.bottom) / 2;
ClientToScreen(hMainWnd, &pt);
GetCursorPos(&orig_pos);
SetCursorPos(pt.x, pt.y);
flush_events();
flush_sequences(sequences, NUM_MSG_SEQUENCES);
......@@ -2843,6 +2845,7 @@ static void test_right_click(void)
selected = (HTREEITEM)SendMessageA(hTree, TVM_GETNEXTITEM, TVGN_CARET, 0);
ok(selected == hChild, "child item should still be selected\n");
SetCursorPos(orig_pos.x, orig_pos.y);
DestroyWindow(hTree);
}
......
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