mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
* 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:
parent
8e09c9de77
commit
640612f030
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue