Lockscreen-settings: fixed missing param

This commit is contained in:
ItsLemmy
2025-11-08 22:41:08 -05:00
parent 8b7ec73fdf
commit 8bd2f0ca7f
@@ -12,7 +12,7 @@ ColumnLayout {
label: I18n.tr("settings.lock-screen.lock-on-suspend.label")
description: I18n.tr("settings.lock-screen.lock-on-suspend.description")
checked: Settings.data.general.lockOnSuspend
onToggled: Settings.data.general.lockOnSuspend = checked
onToggled: checked => Settings.data.general.lockOnSuspend = checked
}
NToggle {