From 9830a977a0908116c682162af7c55138d20cdaad Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Thu, 9 Jul 2020 16:58:04 +0800 Subject: [PATCH] Add Web Feed Colours Icons in the picker now use accent colour. --- Multiplatform/Shared/Add/AddWebFeedView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Multiplatform/Shared/Add/AddWebFeedView.swift b/Multiplatform/Shared/Add/AddWebFeedView.swift index d4ae6d20b..7eeaf252e 100644 --- a/Multiplatform/Shared/Add/AddWebFeedView.swift +++ b/Multiplatform/Shared/Add/AddWebFeedView.swift @@ -134,14 +134,14 @@ struct AddWebFeedView: View { if viewModel.containers[index] is Folder { HStack(alignment: .top) { if let image = viewModel.smallIconImage(for: viewModel.containers[index]) { - Image(rsImage: image) + Image(rsImage: image).foregroundColor(.accentColor) } Text("\(containerName)").tag(index) }.padding(.leading, 16) } else { HStack(alignment: .top) { if let image = viewModel.smallIconImage(for: viewModel.containers[index]) { - Image(rsImage: image) + Image(rsImage: image).foregroundColor(.accentColor) } Text(containerName).tag(index) }