diff --git a/.config/quickshell/ii/modules/common/widgets/NotificationGroup.qml b/.config/quickshell/ii/modules/common/widgets/NotificationGroup.qml index a5b680ba..d4aa0023 100644 --- a/.config/quickshell/ii/modules/common/widgets/NotificationGroup.qml +++ b/.config/quickshell/ii/modules/common/widgets/NotificationGroup.qml @@ -1,5 +1,6 @@ -import qs.modules.common +import qs import qs.services +import qs.modules.common import qs.modules.common.functions import "./notification_utils.js" as NotificationUtils import QtQuick @@ -211,6 +212,11 @@ MouseArea { // Notification group area expanded: root.expanded fontSize: topRow.fontSize onClicked: { root.toggleExpanded() } + altAction: () => { root.toggleExpanded() } + + StyledToolTip { + content: Translation.tr("Tip: right-clicking a group\nalso expands it") + } } } diff --git a/.config/quickshell/ii/modules/common/widgets/NotificationGroupExpandButton.qml b/.config/quickshell/ii/modules/common/widgets/NotificationGroupExpandButton.qml index ba2b7e10..aced621e 100644 --- a/.config/quickshell/ii/modules/common/widgets/NotificationGroupExpandButton.qml +++ b/.config/quickshell/ii/modules/common/widgets/NotificationGroupExpandButton.qml @@ -44,5 +44,4 @@ RippleButton { // Expand button } } } - }