summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp')
-rw-r--r--tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp b/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
index a70129c5f7..548b5ccf6a 100644
--- a/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
+++ b/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
@@ -8547,6 +8547,7 @@ void tst_QWidget::syntheticEnterLeave()
MyWidget window;
window.setWindowFlags(Qt::WindowStaysOnTopHint);
+ window.move(200, 200);
window.resize(200, 200);
MyWidget *child1 = new MyWidget(&window);
@@ -8636,8 +8637,6 @@ void tst_QWidget::syntheticEnterLeave()
#ifndef QTEST_NO_CURSOR
void tst_QWidget::taskQTBUG_4055_sendSyntheticEnterLeave()
{
- if (m_platform == QStringLiteral("windows") || m_platform == QStringLiteral("xcb"))
- QSKIP("QTBUG-26424");
class SELParent : public QWidget
{
public:
@@ -8665,6 +8664,7 @@ void tst_QWidget::taskQTBUG_4055_sendSyntheticEnterLeave()
QCursor::setPos(QPoint(0,0));
SELParent parent;
+ parent.move(200, 200);
parent.resize(200, 200);
SELChild child(&parent);
child.resize(200, 200);