Make Sidebar expansion state available to SidebarModel

This commit is contained in:
Maurice Parker
2020-07-26 15:31:32 -05:00
parent 539685586e
commit 2efc0a17a9
3 changed files with 5 additions and 7 deletions

View File

@@ -21,6 +21,7 @@ class SidebarModel: ObservableObject, UndoableCommandRunner {
@Published var selectedFeedIdentifiers = Set<FeedIdentifier>()
@Published var selectedFeedIdentifier: FeedIdentifier? = .none
@Published var isReadFiltered = false
@Published var expandedContainers = SidebarExpandedContainers()
weak var delegate: SidebarModelDelegate?