fix(ntextinput): use onTextChanged for autosave, onEditingFinished instead of onAccepted

- Switch most settings from onEditingFinished to onTextChanged so
changes save on every keystroke
- Replace onAccepted with onEditingFinished (Enter + blur) for search,
pager, wifi, bluetooth
- Keep onEditingFinished for pager, wallhaven, path inputs, and
validation fields
This commit is contained in:
Lysec
2026-03-18 17:50:46 +01:00
parent 0756e9f56c
commit 9f8bf988f0
23 changed files with 76 additions and 62 deletions
+2 -4
View File
@@ -29,10 +29,8 @@ RowLayout {
description: root.description
placeholderText: root.placeholderText
text: root.text
onEditingFinished: {
root.text = text;
root.editingFinished();
}
onTextChanged: root.text = text
onEditingFinished: root.editingFinished()
Layout.fillWidth: true
}