notifications: add group expand tip tooltip

This commit is contained in:
end-4 2025-08-31 17:29:06 +02:00
parent 53b6f5d8e8
commit e0cf3d0962
2 changed files with 7 additions and 2 deletions

View file

@ -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")
}
}
}

View file

@ -44,5 +44,4 @@ RippleButton { // Expand button
}
}
}
}