Module: wine Branch: master Commit: 76a9f965fd1c465c81dd8e1f8ba57c700ca60338 URL: https://source.winehq.org/git/wine.git/?a=commit;h=76a9f965fd1c465c81dd8e1f8...
Author: Huw Davies huw@codeweavers.com Date: Thu Jan 3 11:03:31 2019 +0000
comctl32/tests: Move the cursor over the treeview to avoid random mouse move messages.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45719 Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/comctl32/tests/treeview.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dlls/comctl32/tests/treeview.c b/dlls/comctl32/tests/treeview.c index c60aa8a..8ba7f54 100644 --- a/dlls/comctl32/tests/treeview.c +++ b/dlls/comctl32/tests/treeview.c @@ -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); }