aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/controls/data/tst_splitview.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/controls/data/tst_splitview.qml b/tests/auto/controls/data/tst_splitview.qml
index 5281e1e8..b9ace27e 100644
--- a/tests/auto/controls/data/tst_splitview.qml
+++ b/tests/auto/controls/data/tst_splitview.qml
@@ -2127,7 +2127,7 @@ TestCase {
// Move the mouse over the handle.
var handles = findHandles(control)
var targetHandle = handles[0]
- // Test fails if we don't do two moves for some reason...
+ // Test fails if we don't do two moves for some reason... QTBUG-94968
mouseMove(targetHandle, targetHandle.width / 2, targetHandle.height / 2)
mouseMove(targetHandle, targetHandle.width / 2, targetHandle.height / 2)
verify(targetHandle.SplitHandle.hovered)
@@ -2138,6 +2138,7 @@ TestCase {
// Move the mouse back over the handle.
mouseMove(targetHandle, targetHandle.width / 2, targetHandle.height / 2)
+ mouseMove(targetHandle, targetHandle.width / 2, targetHandle.height / 2)
verify(targetHandle.SplitHandle.hovered)
// Move the mouse to the MouseArea on the right. The handle should no longer be hovered.