From 9264ad26d6a6c717804056ec425109d9d16465b9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 18 Feb 2025 20:44:30 -0500 Subject: [PATCH] Make the Notifications window non-modal Tapping on a notification here doesn't close the window. Additionally, you need to tap it several times for NeoChat to scroll up in a room. Considering all of this, it would make more sense for this window to be non-modal for now so you can have the Notifications window open while using the main NeoChat window. --- src/qml/SpaceDrawer.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/SpaceDrawer.qml b/src/qml/SpaceDrawer.qml index a08b77c04..735d05510 100644 --- a/src/qml/SpaceDrawer.qml +++ b/src/qml/SpaceDrawer.qml @@ -65,7 +65,8 @@ QQC2.Control { onSelected: pageStack.pushDialogLayer(Qt.createComponent('org.kde.neochat', 'NotificationsView'), { connection: root.connection }, { - title: i18nc("@title", "Notifications") + title: i18nc("@title", "Notifications"), + modality: Qt.NonModal }) }