LockScreen: add compact mode toggle in GeneralTab

Settings: add lockscreen compact mode setting
i18n: add translations
This commit is contained in:
lysec
2025-10-12 11:04:35 +02:00
parent b4a344b0b5
commit d5d654e010
9 changed files with 114 additions and 19 deletions
+7
View File
@@ -89,6 +89,13 @@ ColumnLayout {
onToggled: checked => Settings.data.ui.tooltipsEnabled = checked
}
NToggle {
label: I18n.tr("settings.general.ui.compact-lockscreen.label")
description: I18n.tr("settings.general.ui.compact-lockscreen.description")
checked: Settings.data.general.compactLockScreen
onToggled: checked => Settings.data.general.compactLockScreen = checked
}
ColumnLayout {
spacing: Style.marginXXS * scaling
Layout.fillWidth: true