diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-13 20:52:09 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-13 20:52:09 -0500 |
| commit | f0ea26a71bb1359479c620ba3d571e129547c912 (patch) | |
| tree | b06deb81f263027deb63ff86ca267479018a21ef /modules/controlcenter/dev/DevSession.qml | |
| parent | nmcli: migrated all of ethernet controlcenter (diff) | |
| download | caelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.tar.gz caelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.tar.bz2 caelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.zip | |
controlcenter: removed dev panels
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] -} - |