Don’t call NSOutlineView’s sizeLastColumnToFit

This doesn’t seem to be required, might only have been an issue with cell-based outline views, or perhaps only on an older version of the OS.
This commit is contained in:
Allan Odgaard
2014-09-01 17:37:11 +02:00
parent 5cc60a6d5b
commit d2a2a9dfdd

View File

@@ -795,7 +795,6 @@ NSString* const FFFindWasTriggeredByEnter = @"FFFindWasTriggeredByEnter";
for(FFResultNode* item in [_results.children objectsAtIndexes:newItemsIndexes])
[self.windowController.resultsOutlineView expandItem:item];
[self.windowController.resultsOutlineView endUpdates];
[self.windowController.resultsOutlineView sizeLastColumnToFit];
}
- (void)folderSearchDidFinish:(NSNotification*)aNotification