diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:18:20 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:18:20 -0500 |
| commit | 7d1c89a7a85f45b229d341013e1001cce30b642e (patch) | |
| tree | bd120f4cd39aca0f8e7ecf1fefec3c0d3c297431 /modules/controlcenter | |
| parent | tray: open settings button matches other popouts (diff) | |
| download | caelestia-shell-7d1c89a7a85f45b229d341013e1001cce30b642e.tar.gz caelestia-shell-7d1c89a7a85f45b229d341013e1001cce30b642e.tar.bz2 caelestia-shell-7d1c89a7a85f45b229d341013e1001cce30b642e.zip | |
controlcenter: undo accordion collapse on network and audio pane sections
Diffstat (limited to 'modules/controlcenter')
| -rw-r--r-- | modules/controlcenter/audio/AudioPane.qml | 14 | ||||
| -rw-r--r-- | modules/controlcenter/network/NetworkingPane.qml | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/modules/controlcenter/audio/AudioPane.qml b/modules/controlcenter/audio/AudioPane.qml index 6f5a1f4..8c990a6 100644 --- a/modules/controlcenter/audio/AudioPane.qml +++ b/modules/controlcenter/audio/AudioPane.qml @@ -62,13 +62,6 @@ RowLayout { title: qsTr("Output devices") expanded: true - onToggleRequested: { - if (!expanded) { - // Opening output devices, close input devices - inputDevicesSection.expanded = false; - } - } - ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.small @@ -149,13 +142,6 @@ RowLayout { title: qsTr("Input devices") expanded: true - onToggleRequested: { - if (!expanded) { - // Opening input devices, close output devices - outputDevicesSection.expanded = false; - } - } - ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.small diff --git a/modules/controlcenter/network/NetworkingPane.qml b/modules/controlcenter/network/NetworkingPane.qml index a44a54c..0560581 100644 --- a/modules/controlcenter/network/NetworkingPane.qml +++ b/modules/controlcenter/network/NetworkingPane.qml @@ -107,13 +107,6 @@ RowLayout { title: qsTr("Ethernet") expanded: true - onToggleRequested: { - if (!expanded) { - // Opening ethernet, close wireless - wirelessListSection.expanded = false; - } - } - ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.small @@ -241,13 +234,6 @@ RowLayout { title: qsTr("Wireless") expanded: true - onToggleRequested: { - if (!expanded) { - // Opening wireless, close ethernet - ethernetListSection.expanded = false; - } - } - ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.small |