Set the total unread count in the subtitle when nothing is selected

This commit is contained in:
Maurice Parker 2020-08-14 14:35:36 -05:00
parent eccfd5e15b
commit 24295639ae

View File

@ -1220,7 +1220,9 @@ private extension MainWindowController {
}
} else {
window?.title = appDelegate.appName!
return
if #available(macOS 11.0, *) {
window?.subtitle = "\(appDelegate.unreadCount) unread"
}
}
}