Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Fix for favicon placeholder not appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
josh- committed May 31, 2014
1 parent 2364eff commit ded9485
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CloudyTabs/JPAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand All @@ -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];
Expand Down

0 comments on commit ded9485

Please sign in to comment.