SettingsPage: Switch non ha description in Silica (era la causa di 'Impossibile caricare la pagina'); hint spostato in Label

This commit is contained in:
2026-08-12 10:47:40 +02:00
parent 0598fd4409
commit 711e70734d
+9 -1
View File
@@ -48,11 +48,19 @@ Page {
Switch {
text: "Ignora errori certificato SSL"
description: "Da attivare se il server usa un certificato autofirmato"
checked: appSettings.ignoreSslErrors
onCheckedChanged: appSettings.ignoreSslErrors = checked
}
Label {
x: Theme.horizontalPageMargin
width: parent.width - 2 * Theme.horizontalPageMargin
text: "Da attivare se il server usa un certificato autofirmato"
color: Theme.secondaryColor
font.pixelSize: Theme.fontSizeSmall
wrapMode: Text.Wrap
}
SectionHeader { text: "Connessione" }
Button {