diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-16 23:01:51 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-16 23:01:51 -0500 |
| commit | 9f8f8ac73145aacfa9aeaa6455210aac39579908 (patch) | |
| tree | 3555ff39cfb565ab0dd5999467d18151154edde8 /modules/controlcenter/network/WirelessDetails.qml | |
| parent | controlcenter: lazyloading wallpapers FIXED (diff) | |
| download | caelestia-shell-9f8f8ac73145aacfa9aeaa6455210aac39579908.tar.gz caelestia-shell-9f8f8ac73145aacfa9aeaa6455210aac39579908.tar.bz2 caelestia-shell-9f8f8ac73145aacfa9aeaa6455210aac39579908.zip | |
controlcenter: correcting containers (network details)
Diffstat (limited to 'modules/controlcenter/network/WirelessDetails.qml')
| -rw-r--r-- | modules/controlcenter/network/WirelessDetails.qml | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/modules/controlcenter/network/WirelessDetails.qml b/modules/controlcenter/network/WirelessDetails.qml index 82ac975..6b7cb15 100644 --- a/modules/controlcenter/network/WirelessDetails.qml +++ b/modules/controlcenter/network/WirelessDetails.qml @@ -17,6 +17,8 @@ Item { required property Session session readonly property var network: session.network.active + anchors.fill: parent + Component.onCompleted: { updateDeviceDetails(); checkSavedProfile(); @@ -98,25 +100,12 @@ Item { } } - StyledFlickable { - id: flickable - - anchors.fill: parent + ColumnLayout { + id: layout - flickableDirection: Flickable.VerticalFlick - clip: true - contentHeight: layout.height - - StyledScrollBar.vertical: StyledScrollBar { - flickable: flickable - } - - ColumnLayout { - id: layout - - anchors.left: parent.left - anchors.right: parent.right - spacing: Appearance.spacing.normal + anchors.left: parent.left + anchors.right: parent.right + spacing: Appearance.spacing.normal ConnectionHeader { icon: root.network?.isSecure ? "lock" : "wifi" @@ -214,7 +203,6 @@ Item { deviceDetails: Nmcli.wirelessDeviceDetails } } - } } function handleConnect(): void { |