Better panel naming and removed ref to SettingsWindow

This commit is contained in:
quadbyte 2025-08-12 21:33:22 -04:00
parent 9a70d8028a
commit ce22559ee2
6 changed files with 22 additions and 31 deletions

View file

@ -13,7 +13,7 @@ NClock {
}
onEntered: {
if (!calendar.isLoaded) {
if (!calendarPanel.isLoaded) {
tooltip.show()
}
}
@ -22,6 +22,6 @@ NClock {
}
onClicked: {
tooltip.hide()
calendar.isLoaded = !calendar.isLoaded
calendarPanel.isLoaded = !calendarPanel.isLoaded
}
}