lock: add setting to toggle new shape password chars

This commit is contained in:
end-4
2025-10-30 15:56:17 +01:00
parent f3e674684e
commit d645286744
3 changed files with 17 additions and 3 deletions
@@ -556,6 +556,15 @@ ContentPage {
Config.options.lock.showLockedText = checked;
}
}
ConfigSwitch {
buttonIcon: "shapes"
text: Translation.tr('Use varying shapes for password characters')
checked: Config.options.lock.materialShapeChars
onCheckedChanged: {
Config.options.lock.materialShapeChars = checked;
}
}
}
ContentSubsection {
title: Translation.tr("Style: Blurred")