Fix: UserInterfaceTab accessing a non existing setting.

This commit is contained in:
ItsLemmy
2025-11-17 15:15:43 -05:00
parent 7b926b68af
commit 3bb8d8a7c2
2 changed files with 3 additions and 3 deletions
@@ -158,8 +158,8 @@ ColumnLayout {
visible: (Quickshell.screens.length > 1)
label: I18n.tr("settings.user-interface.allow-panels-without-bar.label")
description: I18n.tr("settings.user-interface.allow-panels-without-bar.description")
checked: Settings.data.ui.allowPanelsOnScreenWithoutBar
onToggled: checked => Settings.data.ui.allowPanelsOnScreenWithoutBar = checked
checked: Settings.data.general.allowPanelsOnScreenWithoutBar
onToggled: checked => Settings.data.general.allowPanelsOnScreenWithoutBar = checked
}
NDivider {