diff options
Diffstat (limited to 'modules/controlcenter/dev/DevSession.qml')
| -rw-r--r-- | modules/controlcenter/dev/DevSession.qml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/controlcenter/dev/DevSession.qml b/modules/controlcenter/dev/DevSession.qml deleted file mode 100644 index d911386..0000000 --- a/modules/controlcenter/dev/DevSession.qml +++ /dev/null @@ -1,23 +0,0 @@ -import QtQuick - -QtObject { - readonly property list<string> panes: ["wireless", "debug"] - - required property var root - property bool floating: false - property string active: panes[0] - property int activeIndex: 0 - property bool navExpanded: false - - component Network: QtObject { - property var active - property bool showPasswordDialog: false - property var pendingNetwork - } - - readonly property Network network: Network {} - - onActiveChanged: activeIndex = panes.indexOf(active) - onActiveIndexChanged: active = panes[activeIndex] -} - |