diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-19 14:07:53 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-19 14:07:53 -0500 |
| commit | 50dd4e1c441db43bc4dee5d5007f28c52cef848b (patch) | |
| tree | 6ab9e43c24cf48cdcf120c5fc1275cc4cb116cf0 /modules/controlcenter/Session.qml | |
| parent | refactor: added state module (diff) | |
| download | caelestia-shell-50dd4e1c441db43bc4dee5d5007f28c52cef848b.tar.gz caelestia-shell-50dd4e1c441db43bc4dee5d5007f28c52cef848b.tar.bz2 caelestia-shell-50dd4e1c441db43bc4dee5d5007f28c52cef848b.zip | |
refactor: created pane registry
Diffstat (limited to '')
| -rw-r--r-- | modules/controlcenter/Session.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/controlcenter/Session.qml b/modules/controlcenter/Session.qml index 5d7b094..9c6a754 100644 --- a/modules/controlcenter/Session.qml +++ b/modules/controlcenter/Session.qml @@ -1,8 +1,9 @@ import QtQuick import "./state" +import qs.modules.controlcenter QtObject { - readonly property list<string> panes: ["network", "bluetooth", "audio", "appearance", "taskbar", "launcher"] + readonly property list<string> panes: PaneRegistry.labels required property var root property bool floating: false |