This commit is contained in:
2026-02-26 23:36:29 -08:00
parent 3ed2df2cd5
commit 80efc104ed
5 changed files with 93 additions and 26 deletions

View File

@@ -17,6 +17,7 @@ Item {
background.index = 4
notifPopup.modelData = notif
root.open()
timeout.restart()
}
}
Widgets.Notification {
@@ -25,4 +26,10 @@ Item {
modelData: notifServer.trackedNotifications.values[0] ?? undefined
color: "transparent"
}
Timer {
id: timeout
running: false
interval: 3000
onTriggered: root.close()
}
}