mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-26 20:27:42 +00:00
Fixing uniform column resize spacing issue.
This commit is contained in:
@@ -1561,8 +1561,9 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
|
||||
UPDATE_COLUMN_RANGES_IF_NECESSARY();
|
||||
|
||||
var range = _tableColumnRanges[aColumnIndex];
|
||||
var spacing = _intercellSpacing.width || 1;
|
||||
|
||||
return _CGRectMake(range.location, 0.0, range.length, _CGRectGetHeight([self bounds]));
|
||||
return _CGRectMake(range.location + spacing, 0.0, range.length - (2 * spacing), _CGRectGetHeight([self bounds]));
|
||||
}
|
||||
|
||||
// Complexity:
|
||||
|
||||
Reference in New Issue
Block a user