Source/NSTableHeaderView.m ([-mouseDown:]): redraw the headercell when

column reordering is on.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12561 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Pierre-Yves Rivaille 2002-02-18 21:39:31 +00:00
parent 632eaef8bc
commit 2b8be48edf
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-02-18 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
* Source/NSTableHeaderView.m ([NSTableHeaderView -mouseDown:]):
The tableHeaderCell is now redrawn when column reordering is on.
2002-02-18 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
* Source/NSWindow.m ([NSWindow -close]): ignore the call if the

View file

@ -737,6 +737,14 @@
{
[_tableView _selectColumn: columnIndex
modifiers: modifiers];
[_tableView _didClickTableColumn:
currentColumn];
[self lockFocus];
[self drawRect: [self headerRectOfColumn: columnIndex]];
[self unlockFocus];
[_window flushWindow];
}
else // mouseDragged == YES
{