From 4e4911ff83730b341a3ef5d3d1c0503b47658e87 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Thu, 13 Jun 2024 18:32:39 +0100 Subject: [PATCH] Missed Symbol Variant --- Whisky/Views/Programs/ProgramsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Whisky/Views/Programs/ProgramsView.swift b/Whisky/Views/Programs/ProgramsView.swift index f92f9130..92663d67 100644 --- a/Whisky/Views/Programs/ProgramsView.swift +++ b/Whisky/Views/Programs/ProgramsView.swift @@ -203,11 +203,11 @@ struct BlocklistItemView: View { Text(blockedUrl.prettyPath(bottle)) Spacer() if showButtons { - Button("program.remove.blocklist", systemImage: "xmark.circle") { + Button("program.remove.blocklist", systemImage: "xmark") { bottle.settings.blocklist.removeAll { $0 == blockedUrl } } .labelStyle(.iconOnly) - .symbolVariant(.fill) + .symbolVariant(.fill.circle) .buttonStyle(.plain) .foregroundColor(.secondary) .help("program.remove.blocklist")