From 226a7d05b64aa1faf0f94e6928dabaee746a4e05 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Fri, 24 Nov 2017 22:05:10 -0800 Subject: [PATCH] Use 97% white background for source list, since favicons look so very terrible on standard translucent sidebar background. --- Evergreen/Base.lproj/MainWindow.storyboard | 4 ++-- Evergreen/MainWindow/MainWindowController.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Evergreen/Base.lproj/MainWindow.storyboard b/Evergreen/Base.lproj/MainWindow.storyboard index 2123d5f56..781995ee4 100644 --- a/Evergreen/Base.lproj/MainWindow.storyboard +++ b/Evergreen/Base.lproj/MainWindow.storyboard @@ -389,7 +389,7 @@ - + @@ -428,7 +428,7 @@ - + diff --git a/Evergreen/MainWindow/MainWindowController.swift b/Evergreen/MainWindow/MainWindowController.swift index dbb4c4759..9645ba331 100644 --- a/Evergreen/MainWindow/MainWindowController.swift +++ b/Evergreen/MainWindow/MainWindowController.swift @@ -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))" } } }