From 2167bdbe952f3a6f098f3cfb4b3e5e34a3686e2e Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Sun, 17 May 2026 22:52:28 -0400 Subject: [PATCH] Fix gallery ScrollView sizing so Slider and Composed render --- .../omarchy-shell/plugins/dev-gallery/GalleryPanel.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/default/quickshell/omarchy-shell/plugins/dev-gallery/GalleryPanel.qml b/default/quickshell/omarchy-shell/plugins/dev-gallery/GalleryPanel.qml index 68a8c7e1..7abdace8 100644 --- a/default/quickshell/omarchy-shell/plugins/dev-gallery/GalleryPanel.qml +++ b/default/quickshell/omarchy-shell/plugins/dev-gallery/GalleryPanel.qml @@ -102,13 +102,14 @@ Item { } ScrollView { + id: scrollArea anchors.fill: parent anchors.margins: 18 clip: true ScrollBar.horizontal.policy: ScrollBar.AlwaysOff Column { - width: parent.width - 24 + width: scrollArea.availableWidth spacing: 22 // ---- Header ------------------------------------------------------ @@ -514,6 +515,7 @@ Item { } } + // ---- Slider ------------------------------------------------------ Column { width: parent.width