From a231ae2db0c9b619e274472b4ac52ef2770f59e2 Mon Sep 17 00:00:00 2001 From: mobrava <82764703+mobrava@users.noreply.github.com> Date: Mon, 31 Aug 2026 21:30:20 +0900 Subject: [PATCH] Hide the pinboard scroll indicator The history grid already hides its horizontal scroll indicator. The pinboard grid kept it, so a scrollbar sat across the bottom of the panel whenever a pinboard tab was open. --- Clipbara/Views/PinboardGridView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clipbara/Views/PinboardGridView.swift b/Clipbara/Views/PinboardGridView.swift index 20c436c..f7adb93 100644 --- a/Clipbara/Views/PinboardGridView.swift +++ b/Clipbara/Views/PinboardGridView.swift @@ -33,7 +33,7 @@ struct PinboardGridView: View { let pinboardItems = orderedEntries.compactMap(\.clipboardItem) ScrollViewReader { proxy in - ScrollView(.horizontal, showsIndicators: true) { + ScrollView(.horizontal, showsIndicators: false) { LazyHGrid(rows: rows, spacing: 8) { ForEach(Array(orderedEntries.enumerated()), id: \.element.id) { index, entry in if let item = entry.clipboardItem {