Fix notification hovering not working on content/close button

This commit is contained in:
Thibault Martin
2026-02-23 14:33:35 +01:00
parent 73ae2c4e96
commit ce3b014bff
+8
View File
@@ -577,6 +577,10 @@ Variants {
anchors.margins: Style.marginM
spacing: Style.marginM
HoverHandler {
onHoveredChanged: hovered ? card.hoverCount++ : card.hoverCount--
}
RowLayout {
Layout.fillWidth: true
spacing: Style.marginL
@@ -722,6 +726,10 @@ Variants {
anchors.right: cardBackground.right
anchors.rightMargin: Style.marginXL
HoverHandler {
onHoveredChanged: hovered ? card.hoverCount++ : card.hoverCount--
}
onClicked: {
card.runAction("", true);
}