From afc4125beee9c39a2ef1559e1ac318cbcf0c1dbc Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Fri, 17 Apr 2026 02:47:05 +0200 Subject: [PATCH] Style tvOS playlist delete button with red text on bordered background --- Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift b/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift index 49088cd1..4768f25c 100644 --- a/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift +++ b/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift @@ -553,12 +553,13 @@ struct UnifiedPlaylistDetailView: View { } .buttonStyle(.bordered) - Button(role: .destructive) { + Button { showingDeleteConfirmation = true } label: { Label(String(localized: "playlist.delete"), systemImage: "trash") .frame(maxWidth: .infinity, minHeight: 50) .font(.headline) + .foregroundStyle(.red) } .buttonStyle(.bordered) }