summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-10 21:43:23 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-10 21:43:23 +1000
commit0b0657314f81c58ed3a2e2499cc905605a979d4e (patch)
treea94058f02df507a8df2165e175fadc11abfbc075 /modules
parentnotifs: option to have expire timeout (diff)
downloadcaelestia-shell-0b0657314f81c58ed3a2e2499cc905605a979d4e.tar.gz
caelestia-shell-0b0657314f81c58ed3a2e2499cc905605a979d4e.tar.bz2
caelestia-shell-0b0657314f81c58ed3a2e2499cc905605a979d4e.zip
notifs: invoke action on click if only single action
Diffstat (limited to 'modules')
-rw-r--r--modules/notifications/Notification.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml
index a02210e..76274e0 100644
--- a/modules/notifications/Notification.qml
+++ b/modules/notifications/Notification.qml
@@ -57,6 +57,11 @@ StyledRect {
root.expanded = diffY > 0;
}
}
+ onClicked: {
+ const actions = root.modelData.actions;
+ if (actions.length === 1)
+ root.modelData.actions[0].invoke();
+ }
}
Behavior on x {