Stop disabling tab support on Multiplatform macOS. Issue #179

This commit is contained in:
Maurice Parker 2020-07-23 11:29:48 -05:00
parent 6ebd5ad5ed
commit b3ca806d0b
2 changed files with 4 additions and 2 deletions

View File

@ -176,8 +176,11 @@ private extension SidebarModel {
userDidDeleteAccountPublisher,
unreadCountDidInitializePublisher,
unreadCountDidChangePublisher)
let kickStarter = Notification(name: Notification.Name(rawValue: "Kick Starter"))
sidebarRebuildPublishers
.prepend(kickStarter)
.debounce(for: .milliseconds(500), scheduler: RunLoop.main)
.combineLatest($isReadFiltered, $selectedFeeds)
.sink { [weak self] _, readFilter, selectedFeeds in

View File

@ -69,7 +69,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, UNUserNotificationCenterDele
#endif
override init() {
NSWindow.allowsAutomaticWindowTabbing = false
super.init()
AccountManager.shared = AccountManager(accountsFolder: Platform.dataSubfolder(forApplication: nil, folderName: "Accounts")!)