File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,9 @@ - (IBAction)handleDroppedFile:(DragFileView *)sender {
5858 NSURL *destinationURL = openPanel.URL ;
5959
6060 // Perform the extraction in the background.
61- dispatch_async (dispatch_get_global_queue (QOS_CLASS_USER_INITIATED, 0 ), ^{
61+ // Using DISPATCH_QUEUE_PRIORITY_HIGH which is available on 10.9
62+ // Move to QOS_CLASS_USER_INITIATED when 10.10 is the deployment target
63+ dispatch_async (dispatch_get_global_queue (DISPATCH_QUEUE_PRIORITY_HIGH, 0 ), ^{
6264 BuildSettingExtractor *buildSettingExtractor = [[BuildSettingExtractor alloc ] init ];
6365 buildSettingExtractor.includeBuildSettingInfoComments = [[NSUserDefaults standardUserDefaults ] boolForKey: TPSIncludeBuildSettingInfoComments];
6466
You can’t perform that action at this time.
0 commit comments