adds (old version) to other NNW entries
This commit is contained in:
parent
2636a5cc72
commit
235da781db
@ -22,12 +22,18 @@ struct GeneralPreferencesView: View {
|
|||||||
.tag(interval.rawValue)
|
.tag(interval.rawValue)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.frame(width: 300, alignment: .center)
|
|
||||||
|
|
||||||
Picker("Default RSS reader", selection: $preferences.readerSelection, content: {
|
Picker("Default RSS reader", selection: $preferences.readerSelection, content: {
|
||||||
ForEach(0..<preferences.rssReaders.count, content: { index in
|
ForEach(0..<preferences.rssReaders.count, content: { index in
|
||||||
|
if index > 0 && preferences.rssReaders[index].nameMinusAppSuffix.contains("NetNewsWire") {
|
||||||
|
Text(preferences.rssReaders[index].nameMinusAppSuffix.appending(" (old version)"))
|
||||||
|
|
||||||
|
} else {
|
||||||
Text(preferences.rssReaders[index].nameMinusAppSuffix)
|
Text(preferences.rssReaders[index].nameMinusAppSuffix)
|
||||||
.tag(index)
|
.tag(index)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user