diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-09 17:54:16 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-09 17:54:16 -0500 |
| commit | 5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52 (patch) | |
| tree | 778ac9244f74c4100eee1bc6ee76b86e033d21b2 /modules/controlcenter/Panes.qml | |
| parent | [CI] chore: update flake (diff) | |
| download | caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.gz caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.bz2 caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.zip | |
controlcenter: network and audio panels
Diffstat (limited to 'modules/controlcenter/Panes.qml')
| -rw-r--r-- | modules/controlcenter/Panes.qml | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/modules/controlcenter/Panes.qml b/modules/controlcenter/Panes.qml index 2548c3d..cc4a4cb 100644 --- a/modules/controlcenter/Panes.qml +++ b/modules/controlcenter/Panes.qml @@ -1,6 +1,8 @@ pragma ComponentBehavior: Bound import "bluetooth" +import "network" +import "audio" import qs.components import qs.services import qs.config @@ -23,14 +25,8 @@ ClippingRectangle { Pane { index: 0 - sourceComponent: Item { - StyledText { - anchors.centerIn: parent - text: qsTr("Work in progress") - color: Colours.palette.m3outline - font.pointSize: Appearance.font.size.extraLarge - font.weight: 500 - } + sourceComponent: NetworkPane { + session: root.session } } @@ -43,14 +39,8 @@ ClippingRectangle { Pane { index: 2 - sourceComponent: Item { - StyledText { - anchors.centerIn: parent - text: qsTr("Work in progress") - color: Colours.palette.m3outline - font.pointSize: Appearance.font.size.extraLarge - font.weight: 500 - } + sourceComponent: AudioPane { + session: root.session } } |