diff --git a/autotests/integration/screenedge_client_show_test.cpp b/autotests/integration/screenedge_client_show_test.cpp --- a/autotests/integration/screenedge_client_show_test.cpp +++ b/autotests/integration/screenedge_client_show_test.cpp @@ -161,6 +161,13 @@ QVERIFY(!client->isHiddenInternal()); QCOMPARE(effectsWindowShownSpy.count(), 1); + //hide window again + Cursor::setPos(QPoint(640, 512)); + QVERIFY(client->isHiddenInternal()); + client->setGeometry(QRect(120, 1004, 1180, 20)); + Cursor::setPos(triggerPos); + QVERIFY(client->isHiddenInternal()); + // destroy window again QSignalSpy windowClosedSpy(client, &Client::windowClosed); QVERIFY(windowClosedSpy.isValid()); diff --git a/packageplugins/CMakeLists.txt b/packageplugins/CMakeLists.txt --- a/packageplugins/CMakeLists.txt +++ b/packageplugins/CMakeLists.txt @@ -1,2 +1,4 @@ +add_subdirectory(aurorae) +add_subdirectory(decoration) add_subdirectory(scripts) add_subdirectory(windowswitcher)