diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:31:19 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:31:19 -0500 |
| commit | e339439ee885345b44bff6e2f9db9dbffacfcfbd (patch) | |
| tree | 86b1bc543138f7f5f2962b082548eec11e1078c5 /modules/controlcenter/ethernet | |
| parent | controlcenter: clip to all styledflickable (diff) | |
| download | caelestia-shell-e339439ee885345b44bff6e2f9db9dbffacfcfbd.tar.gz caelestia-shell-e339439ee885345b44bff6e2f9db9dbffacfcfbd.tar.bz2 caelestia-shell-e339439ee885345b44bff6e2f9db9dbffacfcfbd.zip | |
controlcenter: network pane added scrollbar
Diffstat (limited to 'modules/controlcenter/ethernet')
| -rw-r--r-- | modules/controlcenter/ethernet/EthernetDetails.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/controlcenter/ethernet/EthernetDetails.qml b/modules/controlcenter/ethernet/EthernetDetails.qml index 6a01a8b..f715970 100644 --- a/modules/controlcenter/ethernet/EthernetDetails.qml +++ b/modules/controlcenter/ethernet/EthernetDetails.qml @@ -31,12 +31,18 @@ Item { } StyledFlickable { + id: flickable + anchors.fill: parent flickableDirection: Flickable.VerticalFlick clip: true contentHeight: layout.height + StyledScrollBar.vertical: StyledScrollBar { + flickable: flickable + } + ColumnLayout { id: layout |