From 711e70734da36bda18be578c3c87b1bb9c2d4382 Mon Sep 17 00:00:00 2001 From: Carlo Baratto Date: Wed, 12 Aug 2026 10:47:40 +0200 Subject: [PATCH] SettingsPage: Switch non ha description in Silica (era la causa di 'Impossibile caricare la pagina'); hint spostato in Label --- qml/pages/SettingsPage.qml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/qml/pages/SettingsPage.qml b/qml/pages/SettingsPage.qml index 335bf71..35cab1e 100644 --- a/qml/pages/SettingsPage.qml +++ b/qml/pages/SettingsPage.qml @@ -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 {