NTextInput: fixing caller onEditingFinished

This commit is contained in:
quadbyte
2025-08-12 08:13:54 -04:00
parent 049ea7c4e6
commit d0762bea31
6 changed files with 14 additions and 8 deletions
+3 -1
View File
@@ -62,7 +62,9 @@ Item {
NTextInput {
text: Settings.data.location.name
Layout.fillWidth: true
onEditingFinished: Settings.data.location.name = text
onEditingFinished: function () {
Settings.data.location.name = text
}
}
NText {