Add Web Feed Colours

Icons in the picker now use accent colour.
This commit is contained in:
Stuart Breckenridge 2020-07-09 16:58:04 +08:00
parent f5855f032d
commit 9830a977a0
1 changed files with 2 additions and 2 deletions

View File

@ -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)
}