Merge pull request #827 from notiant/patch-1

LockScreen: make 'hibernate' optional
This commit is contained in:
Lysec
2025-11-22 13:14:53 +01:00
committed by GitHub
14 changed files with 58 additions and 10 deletions
@@ -21,6 +21,13 @@ ColumnLayout {
checked: Settings.data.general.compactLockScreen
onToggled: checked => Settings.data.general.compactLockScreen = checked
}
NToggle {
label: I18n.tr("settings.lock-screen.show-hibernate.label")
description: I18n.tr("settings.lock-screen.show-hibernate.description")
checked: Settings.data.general.showHibernateOnLockScreen
onToggled: checked => Settings.data.general.showHibernateOnLockScreen = checked
}
NDivider {
Layout.fillWidth: true