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
+2 -2
View File
@@ -60,7 +60,7 @@ NLoader {
"source": "Tabs/About.qml"
}]
onVisibleChanged: function () {
onVisibleChanged: {
if (visible)
currentTabIndex = 0
}
@@ -188,7 +188,7 @@ NLoader {
icon: "close"
tooltipText: "Close settings panel"
Layout.alignment: Qt.AlignVCenter
onClicked: function () {
onClicked: {
settingsWindow.isLoaded = !settingsWindow.isLoaded
}
}