From b16ee73226f250d5b5a2382e5d3e12e35ee9cf03 Mon Sep 17 00:00:00 2001 From: wlux Date: Tue, 22 Dec 2009 23:27:56 +0000 Subject: [PATCH] Fix incorrect assignment in last commit. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29162 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTableView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSTableView.m b/Source/NSTableView.m index 1535ec1e0..270a716f9 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -3774,7 +3774,7 @@ if (currentRow >= 0 && currentRow < _numberOfRows) \ [self _trackCellAtColumn: _clickedColumn row: _clickedRow withEvent: theEvent]; - didTrackCell = NO; + didTrackCell = YES; if ([[cell class] prefersTrackingUntilMouseUp]) {