summaryrefslogtreecommitdiff
path: root/modules/detachedcontent/bluetooth/BtPane.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-03 13:48:00 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-03 13:48:00 +1000
commit806c29a02f8f9c6884d68f28dfb2e867e3fa6eb7 (patch)
tree8bb5efd88bdcb05ae214dbcf165ec028858035b4 /modules/detachedcontent/bluetooth/BtPane.qml
parentfiledialog: fix null error (diff)
downloadcaelestia-shell-806c29a02f8f9c6884d68f28dfb2e867e3fa6eb7.tar.gz
caelestia-shell-806c29a02f8f9c6884d68f28dfb2e867e3fa6eb7.tar.bz2
caelestia-shell-806c29a02f8f9c6884d68f28dfb2e867e3fa6eb7.zip
dcontent: add info to bt settings
Also flickable
Diffstat (limited to 'modules/detachedcontent/bluetooth/BtPane.qml')
-rw-r--r--modules/detachedcontent/bluetooth/BtPane.qml14
1 files changed, 10 insertions, 4 deletions
diff --git a/modules/detachedcontent/bluetooth/BtPane.qml b/modules/detachedcontent/bluetooth/BtPane.qml
index e72b1ab..ff2cc0a 100644
--- a/modules/detachedcontent/bluetooth/BtPane.qml
+++ b/modules/detachedcontent/bluetooth/BtPane.qml
@@ -54,11 +54,17 @@ RowLayout {
Component {
id: settings
- Settings {
- anchors.margins: Appearance.padding.normal
- anchors.leftMargin: Appearance.padding.normal / 2
+ StyledFlickable {
+ flickableDirection: Flickable.VerticalFlick
+ contentHeight: settingsInner.height
- session: root.session
+ Settings {
+ id: settingsInner
+
+ anchors.left: parent.left
+ anchors.right: parent.right
+ session: root.session
+ }
}
}