Create and use SidebarCellAppearance and SidebarCellLayout with SidebarCell.

This commit is contained in:
Brent Simmons
2017-11-24 21:39:59 -08:00
parent f8a05badcb
commit 4cf3f8dfe7
13 changed files with 218 additions and 132 deletions

View File

@@ -251,10 +251,10 @@ private extension MainWindowController {
func updateWindowTitle() {
if unreadCount < 1 {
window?.title = appName
window?.title = appDelegate.appName
}
else if unreadCount > 0 {
window?.title = "\(appName) (\(unreadCount))"
window?.title = "\(appDelegate.appName) (\(unreadCount))"
}
}
}