Use 97% white background for source list, since favicons look so very terrible on standard translucent sidebar background.

This commit is contained in:
Brent Simmons
2017-11-24 22:05:10 -08:00
parent f7e3a4e914
commit 226a7d05b6
2 changed files with 4 additions and 4 deletions

View File

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