diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/notifications/Notification.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index 11acf1c..cb067f9 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -59,7 +59,7 @@ StyledRect { } } onClicked: event => { - if (event.button !== Qt.LeftButton) + if (!NotifsConfig.actionOnClick || event.button !== Qt.LeftButton) return; const actions = root.modelData.actions; |