mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 22:50:37 +00:00
* Source/NSTableView.m (rectOfColumn:): Use the height of the rows,
not the bounds. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24290 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
260f8e7d58
commit
e2375f3601
2 changed files with 3 additions and 1 deletions
|
@ -4207,7 +4207,7 @@ static BOOL selectContiguousRegion(NSTableView *self,
|
|||
rect.origin.x = _columnOrigins[columnIndex];
|
||||
rect.origin.y = _bounds.origin.y;
|
||||
rect.size.width = [[_tableColumns objectAtIndex: columnIndex] width];
|
||||
rect.size.height = _bounds.size.height;
|
||||
rect.size.height = _numberOfRows * _rowHeight;
|
||||
return rect;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue