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

Huw Davies huw at codeweavers.com
Thu Jan 3 05:03:31 CST 2019


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45719
Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 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 c60aa8a6c4..8ba7f543de 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);
 }
 
-- 
2.18.0




More information about the wine-devel mailing list