Toast: don't hide if mouse is inside toast

This commit is contained in:
Ly-sec
2026-01-15 18:38:24 +01:00
parent cda99d6f1d
commit 580f8fd13c
+3
View File
@@ -99,6 +99,9 @@ Item {
MouseArea {
anchors.fill: background
acceptedButtons: Qt.LeftButton
hoverEnabled: true
onEntered: hideTimer.stop()
onExited: hideTimer.restart()
onClicked: root.hide()
cursorShape: Qt.PointingHandCursor
}