mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Fix: UserInterfaceTab accessing a non existing setting.
This commit is contained in:
@@ -158,8 +158,8 @@ ColumnLayout {
|
|||||||
visible: (Quickshell.screens.length > 1)
|
visible: (Quickshell.screens.length > 1)
|
||||||
label: I18n.tr("settings.user-interface.allow-panels-without-bar.label")
|
label: I18n.tr("settings.user-interface.allow-panels-without-bar.label")
|
||||||
description: I18n.tr("settings.user-interface.allow-panels-without-bar.description")
|
description: I18n.tr("settings.user-interface.allow-panels-without-bar.description")
|
||||||
checked: Settings.data.ui.allowPanelsOnScreenWithoutBar
|
checked: Settings.data.general.allowPanelsOnScreenWithoutBar
|
||||||
onToggled: checked => Settings.data.ui.allowPanelsOnScreenWithoutBar = checked
|
onToggled: checked => Settings.data.general.allowPanelsOnScreenWithoutBar = checked
|
||||||
}
|
}
|
||||||
|
|
||||||
NDivider {
|
NDivider {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import "../Helpers/ColorsConvert.js" as ColorsConvert
|
||||||
import qs.Commons
|
import qs.Commons
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
import "../Helpers/ColorsConvert.js" as ColorsConvert
|
|
||||||
|
|
||||||
Popup {
|
Popup {
|
||||||
id: root
|
id: root
|
||||||
|
|||||||
Reference in New Issue
Block a user