Skip to content

Commit

Permalink
removed extra blank and added a blank line above if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-serafin committed Mar 10, 2013
1 parent 85cb1b7 commit ef4ba78
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions AppKit/CPTableHeaderView.j
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,7 @@ var _CPTableColumnHeaderViewStringValueKey = @"_CPTableColumnHeaderViewStringVal
{
var columnRect = [self headerRectOfColumn:hoveredColumn],
columnCenterPoint = [self convertPoint:CGPointMake(_CGRectGetMidX(columnRect), _CGRectGetMidY(columnRect)) fromView:self];

if (hoveredColumn < _activeColumn && hoverPoint.x < columnCenterPoint.x)
{
[self _moveColumn:_activeColumn toColumn:hoveredColumn];
Expand All @@ -560,8 +561,6 @@ var _CPTableColumnHeaderViewStringValueKey = @"_CPTableColumnHeaderViewStringVal
[self _moveColumn:_activeColumn toColumn:hoveredColumn];
_lastDragDestinationColumnIndex = hoveredColumn;
}


}

_previousTrackingLocation = aPoint;
Expand Down

0 comments on commit ef4ba78

Please sign in to comment.