Skip to content

Commit

Permalink
Disabled the multithreaded spinner.
Browse files Browse the repository at this point in the history
This was causing CATransaction errors on OS X 10.10.
  • Loading branch information
alinebee committed Nov 23, 2014
1 parent 1709e8f commit 39b5a07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Boxer/BXImportDropzonePanelController.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ - (void) awakeFromNib
{
//Set up the dropzone panel to support drag-drop operations
[self.view registerForDraggedTypes: @[NSFilenamesPboardType]];

self.spinner.usesThreadedAnimation = YES;

//Disabled as this was causing CATransaction errors.
//self.spinner.usesThreadedAnimation = YES;
//Since the spinner is on a separate view that's only added to the window
//when it's spinnin' time, we can safely start it animating now
[self.spinner startAnimation: self];
Expand Down

0 comments on commit 39b5a07

Please sign in to comment.