Change navigation title for macOS so that it shows the Feed
This commit is contained in:
parent
809e6542e0
commit
3a67f2cd8e
|
@ -20,7 +20,6 @@ struct SidebarContainerView: View {
|
|||
.modifier(SidebarToolbarModifier())
|
||||
.modifier(SidebarListStyleModifier())
|
||||
.environmentObject(sceneModel.sidebarModel)
|
||||
.navigationTitle(Text("Feeds"))
|
||||
.onAppear {
|
||||
sceneModel.sidebarModel.undoManager = undoManager
|
||||
sceneModel.sidebarModel.rebuildSidebarItems()
|
||||
|
|
|
@ -53,6 +53,7 @@ struct SidebarView: View {
|
|||
List {
|
||||
rows
|
||||
}
|
||||
.navigationTitle(Text("Feeds"))
|
||||
#endif
|
||||
// .onAppear {
|
||||
// expandedContainers.data = expandedContainerData
|
||||
|
|
|
@ -46,6 +46,7 @@ struct TimelineView: View {
|
|||
navigate = !timelineModel.selectedArticleIDs.isEmpty
|
||||
}
|
||||
}
|
||||
.navigationTitle(Text(verbatim: timelineModel.nameForDisplay))
|
||||
#else
|
||||
List(timelineModel.timelineItems) { timelineItem in
|
||||
ZStack {
|
||||
|
|
Loading…
Reference in New Issue