diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-17 08:09:32 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-17 08:09:32 -0500 |
| commit | c2c04b86379c222b5d0e0f123b12713e7a82366e (patch) | |
| tree | 3c95c004fa6eebf0152512195521223e47bb132f /modules/controlcenter/bluetooth/Details.qml | |
| parent | controlcenter: lazyload cleanup confirmed (diff) | |
| download | caelestia-shell-c2c04b86379c222b5d0e0f123b12713e7a82366e.tar.gz caelestia-shell-c2c04b86379c222b5d0e0f123b12713e7a82366e.tar.bz2 caelestia-shell-c2c04b86379c222b5d0e0f123b12713e7a82366e.zip | |
controlcenter: corrections on scrolling in panes and missing scrollbars
Diffstat (limited to 'modules/controlcenter/bluetooth/Details.qml')
| -rw-r--r-- | modules/controlcenter/bluetooth/Details.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/controlcenter/bluetooth/Details.qml b/modules/controlcenter/bluetooth/Details.qml index 7ac5286..883b408 100644 --- a/modules/controlcenter/bluetooth/Details.qml +++ b/modules/controlcenter/bluetooth/Details.qml @@ -18,11 +18,13 @@ StyledFlickable { required property Session session readonly property BluetoothDevice device: session.bt.active - anchors.fill: parent - flickableDirection: Flickable.VerticalFlick contentHeight: layoutWrapper.height + StyledScrollBar.vertical: StyledScrollBar { + flickable: root + } + Item { id: layoutWrapper |