* Source/NSTableView.m (_trackCellAtColumn:row:withEvent:):

Remove check for column editablity.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24152 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ratmice 2006-11-23 11:57:03 +00:00
parent 110369a500
commit 51ea5d2e9c
2 changed files with 7 additions and 2 deletions

View file

@ -3398,8 +3398,8 @@ static inline float computePeriod(NSPoint mouseLocationWin,
{
id newValue = [cell objectValue];
if ([tb isEditable]
&& originalValue != newValue
/* don't check editability that only pertains to editColumn:... */
if (originalValue != newValue
&& ![originalValue isEqual: newValue])
{
[self _setObjectValue: newValue