diff --git a/ChangeLog b/ChangeLog index f88169ba2..b5516d92b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-23 Matt Rice + + * Source/NSTableView.m (_trackCellAtColumn:row:withEvent:): + Remove check for column editablity. + 2006-11-21 Matt Rice * Source/NSWindow.m (sendEvent:): Fix dragging for views which accept diff --git a/Source/NSTableView.m b/Source/NSTableView.m index 29b7139fd..2672688a1 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -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