Use the new weather overlay instead

This commit is contained in:
David Heinemeier Hansson
2026-05-17 08:49:35 +02:00
parent 6c41ab69d3
commit 80da45dd1c
3 changed files with 17 additions and 2 deletions
@@ -13,6 +13,21 @@ Item {
property bool popupOpen: false
function closePopout() { popupOpen = false }
IpcHandler {
target: "weatherFlyout"
function show(): void {
root.popupOpen = true
root.refresh()
autoCloseTimer.start()
}
}
Timer {
id: autoCloseTimer
interval: 5000
onTriggered: root.popupOpen = false
}
// Parsed wttr.in j1 response. Kept on failure so stale data stays visible.
property var report: null