diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:29:42 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:29:42 -0500 |
| commit | 20e07b2a13036335c9890fe67708d2ab2292a4b4 (patch) | |
| tree | 647bb8c5f5fb2258d87c9046e1057e8aa5012fa1 /modules/controlcenter/network/NetworkingPane.qml | |
| parent | controlcenter: fixed anchors vs parent logs (diff) | |
| download | caelestia-shell-20e07b2a13036335c9890fe67708d2ab2292a4b4.tar.gz caelestia-shell-20e07b2a13036335c9890fe67708d2ab2292a4b4.tar.bz2 caelestia-shell-20e07b2a13036335c9890fe67708d2ab2292a4b4.zip | |
controlcenter: clip to all styledflickable
Diffstat (limited to 'modules/controlcenter/network/NetworkingPane.qml')
| -rw-r--r-- | modules/controlcenter/network/NetworkingPane.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/controlcenter/network/NetworkingPane.qml b/modules/controlcenter/network/NetworkingPane.qml index 620e6f7..2faa40a 100644 --- a/modules/controlcenter/network/NetworkingPane.qml +++ b/modules/controlcenter/network/NetworkingPane.qml @@ -36,6 +36,7 @@ RowLayout { anchors.rightMargin: Appearance.padding.large + Appearance.padding.normal / 2 flickableDirection: Flickable.VerticalFlick contentHeight: leftContent.height + clip: true ColumnLayout { id: leftContent @@ -399,6 +400,7 @@ RowLayout { radius: rightBorder.innerRadius color: "transparent" + clip: true // Right pane - networking details/settings Loader { @@ -416,7 +418,7 @@ RowLayout { scale: 1 transformOrigin: Item.Center - clip: false + clip: true asynchronous: true sourceComponent: pane ? (ethernetPane ? ethernetDetails : wirelessDetails) : settings @@ -472,6 +474,7 @@ RowLayout { StyledFlickable { flickableDirection: Flickable.VerticalFlick contentHeight: settingsInner.height + clip: true NetworkSettings { id: settingsInner |