summaryrefslogtreecommitdiff
path: root/modules/controlcenter/Session.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-07 15:38:17 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-07 15:38:17 +1000
commitd9ffc13825b56cb97bce4d31fca4abbdc42b0985 (patch)
treeeb506d597bf47e9884e959b069c446673eee312e /modules/controlcenter/Session.qml
parentdashboard: showOnHover config option (#361) (diff)
downloadcaelestia-shell-d9ffc13825b56cb97bce4d31fca4abbdc42b0985.tar.gz
caelestia-shell-d9ffc13825b56cb97bce4d31fca4abbdc42b0985.tar.bz2
caelestia-shell-d9ffc13825b56cb97bce4d31fca4abbdc42b0985.zip
controlcenter: add floating mode
Closes #363
Diffstat (limited to 'modules/controlcenter/Session.qml')
-rw-r--r--modules/controlcenter/Session.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/controlcenter/Session.qml b/modules/controlcenter/Session.qml
index 0c3f1b4..1ee79c8 100644
--- a/modules/controlcenter/Session.qml
+++ b/modules/controlcenter/Session.qml
@@ -4,8 +4,10 @@ import QtQuick
QtObject {
readonly property list<string> panes: ["network", "bluetooth", "audio"]
- property string active
- property int activeIndex
+ required property var root
+ property string active: panes[0]
+ property int activeIndex: 0
+ property bool navExpanded: false
readonly property Bt bt: Bt {}