SettingsPage: TextField con anchor invece di width binding (elimina il binding loop Silica)

This commit is contained in:
2026-08-12 11:08:25 +02:00
parent 0c6c28aa4e
commit 4afede7b92
+6 -3
View File
@@ -22,7 +22,8 @@ Page {
TextField {
id: serverField
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
label: "Indirizzo Calibre Web"
placeholderText: "https://calibre.example.com"
text: appSettings.serverUrl
@@ -32,7 +33,8 @@ Page {
TextField {
id: userField
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
label: "Utente (vuoto = accesso anonimo)"
text: appSettings.username
onTextChanged: appSettings.username = text
@@ -40,7 +42,8 @@ Page {
TextField {
id: passField
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
label: "Password"
text: appSettings.password
echoMode: TextInput.Password