* 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:
Matt Rice 2006-11-23 11:57:03 +00:00
parent 8e09c9de77
commit 640612f030
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-11-23 Matt Rice <ratmice@gmail.com>
* Source/NSTableView.m (_trackCellAtColumn:row:withEvent:):
Remove check for column editablity.
2006-11-21 Matt Rice <ratmice@gmail.com>
* Source/NSWindow.m (sendEvent:): Fix dragging for views which accept

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