diff options
Diffstat (limited to 'modules/controlcenter/Session.qml')
| -rw-r--r-- | modules/controlcenter/Session.qml | 6 |
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 {} |