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/BtPane.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/BtPane.qml')
| -rw-r--r-- | modules/controlcenter/bluetooth/BtPane.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/controlcenter/bluetooth/BtPane.qml b/modules/controlcenter/bluetooth/BtPane.qml index 32d2c0d..8ad4b1f 100644 --- a/modules/controlcenter/bluetooth/BtPane.qml +++ b/modules/controlcenter/bluetooth/BtPane.qml @@ -1,6 +1,7 @@ pragma ComponentBehavior: Bound import ".." +import qs.components.controls import qs.components.effects import qs.components.containers import qs.config @@ -131,14 +132,20 @@ RowLayout { id: settings StyledFlickable { + id: settingsFlickable flickableDirection: Flickable.VerticalFlick contentHeight: settingsInner.height + StyledScrollBar.vertical: StyledScrollBar { + flickable: settingsFlickable + } + Settings { id: settingsInner anchors.left: parent.left anchors.right: parent.right + anchors.top: parent.top session: root.session } } |