diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-11 20:10:10 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-11 20:10:10 +1000 |
| commit | 925c5176ae474f82082e863c6695c56ec7248494 (patch) | |
| tree | 49412b682e24ab1cce426b89e27eda3b32af4c36 | |
| parent | feat: mpris shortcuts + ipc (diff) | |
| download | caelestia-shell-925c5176ae474f82082e863c6695c56ec7248494.tar.gz caelestia-shell-925c5176ae474f82082e863c6695c56ec7248494.tar.bz2 caelestia-shell-925c5176ae474f82082e863c6695c56ec7248494.zip | |
notifs: disable listview interactivity
| -rw-r--r-- | modules/notifications/Content.qml | 1 | ||||
| -rw-r--r-- | modules/notifications/Notification.qml | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 75fcb31..0ea6935 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -37,6 +37,7 @@ Item { clip: true orientation: Qt.Vertical spacing: Appearance.spacing.smaller + interactive: false delegate: Notification {} diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index c8516d3..a39b522 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -30,7 +30,6 @@ StyledRect { anchors.fill: parent hoverEnabled: true - preventStealing: true cursorShape: pressed ? Qt.ClosedHandCursor : undefined acceptedButtons: Qt.LeftButton | Qt.MiddleButton |