From 75a689fb8c0c46085fcfb9dd37fe7b3c2b891a14 Mon Sep 17 00:00:00 2001 From: Alvie Stoddard Date: Sat, 15 Aug 2026 15:28:21 -0700 Subject: [PATCH] Fix the bulk-delete button collapsing to icon-only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missing .fixedSize() let the tight top-bar HStack compress the button down to its icon, dropping the "Delete N" text entirely — the same bug just found and fixed on the new Undo button, which already had the fix applied. This one predates tonight's changes; it's in already-merged upstream code. --- Sources/Pesty/UI/BarView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Pesty/UI/BarView.swift b/Sources/Pesty/UI/BarView.swift index 87dcd77..78be2e2 100644 --- a/Sources/Pesty/UI/BarView.swift +++ b/Sources/Pesty/UI/BarView.swift @@ -100,6 +100,7 @@ struct BarView: View { } .buttonStyle(.bordered) .controlSize(.small) + .fixedSize() .help("Delete \(count) selected clips (⌘⌫)") .accessibilityLabel("Delete \(count) selected clips") }