From ded948584955be9287dd8cf8988fef105ea58543 Mon Sep 17 00:00:00 2001 From: Josh Parnham Date: Sat, 31 May 2014 13:12:36 +1000 Subject: [PATCH] Fix for favicon placeholder not appearing --- CloudyTabs/JPAppDelegate.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CloudyTabs/JPAppDelegate.m b/CloudyTabs/JPAppDelegate.m index fa1de2e..4a3ff62 100644 --- a/CloudyTabs/JPAppDelegate.m +++ b/CloudyTabs/JPAppDelegate.m @@ -32,6 +32,9 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification [self.statusItem setMenu:self.menu]; [self.statusItem setEnabled:YES]; + // Set the favicon placeholder + [DSFavIconManager sharedInstance].placeholder = [NSImage imageNamed:@"BookmarksDragImage"]; + [self updateMenu]; [self updateStatusItemToolTip]; @@ -40,9 +43,6 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification [queue addPath:[self syncedPreferencesPath] notifyingAbout:VDKQueueNotifyDefault]; [queue setDelegate:self]; - // Set the favicon placeholder - [DSFavIconManager sharedInstance].placeholder = [NSImage imageNamed:@"BookmarksDragImage"]; - // Setup Sparkle SUUpdater *updater = [[SUUpdater class] sharedUpdater]; [updater checkForUpdatesInBackground];