From 3f8a8ea32afba42b436c1e274e00d52d98d5b0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 4 Jun 2015 01:43:27 +0200 Subject: [PATCH] align to c4140d6f4e5cd953023f2c078088d20a553ab875 activation is now supposed to happen instantly --- autotests/test_screen_edges.cpp | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/autotests/test_screen_edges.cpp b/autotests/test_screen_edges.cpp index c217bc2461..92d64d47bf 100644 --- a/autotests/test_screen_edges.cpp +++ b/autotests/test_screen_edges.cpp @@ -785,15 +785,7 @@ void TestScreenEdges::testClientEdge() event.same_screen_focus = 1; event.time = QDateTime::currentMSecsSinceEpoch(); QVERIFY(s->isEntered(&event)); - // first attempt should be pushed back and not activated - QCOMPARE(client.isHiddenInternal(), true); - QCOMPARE(Cursor::pos(), QPoint(1, 50)); - - // but if we wait a little bit it should trigger - QTest::qWait(160); - Cursor::setPos(0, 50); - event.time = QDateTime::currentMSecsSinceEpoch(); - QVERIFY(s->isEntered(&event)); + // autohiding panels shall activate instantly QCOMPARE(client.isHiddenInternal(), false); QCOMPARE(Cursor::pos(), QPoint(1, 50)); @@ -831,12 +823,6 @@ void TestScreenEdges::testClientEdge() QCOMPARE(client.isHiddenInternal(), true); Cursor::setPos(50, 0); s->check(QPoint(50, 0), QDateTime::currentDateTime()); - QCOMPARE(client.isHiddenInternal(), true); - QCOMPARE(Cursor::pos(), QPoint(50, 1)); - // and trigger - QTest::qWait(160); - Cursor::setPos(50, 0); - s->check(QPoint(50, 0), QDateTime::currentDateTime()); QCOMPARE(client.isHiddenInternal(), false); QCOMPARE(Cursor::pos(), QPoint(50, 1));