Replaced all NWidgets callback by proper signals

This commit is contained in:
quadbyte 2025-08-12 13:22:15 -04:00
parent 1a7a0dbb16
commit a7d4e0ec1d
27 changed files with 93 additions and 88 deletions

View file

@ -78,7 +78,7 @@ NLoader {
NIconButton {
icon: "refresh"
sizeMultiplier: 0.8
onClicked: function () {
onClicked: {
network.refreshNetworks()
}
}
@ -86,7 +86,7 @@ NLoader {
NIconButton {
icon: "close"
sizeMultiplier: 0.8
onClicked: function () {
onClicked: {
wifiPanel.visible = false
network.onMenuClosed()
}