mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add Web Feed Colours
Icons in the picker now use accent colour.
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user