mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 20:40:47 +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
110369a500
commit
51ea5d2e9c
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>
|
2006-11-21 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
* Source/NSWindow.m (sendEvent:): Fix dragging for views which accept
|
* Source/NSWindow.m (sendEvent:): Fix dragging for views which accept
|
||||||
|
|
|
@ -3398,8 +3398,8 @@ static inline float computePeriod(NSPoint mouseLocationWin,
|
||||||
{
|
{
|
||||||
id newValue = [cell objectValue];
|
id newValue = [cell objectValue];
|
||||||
|
|
||||||
if ([tb isEditable]
|
/* don't check editability that only pertains to editColumn:... */
|
||||||
&& originalValue != newValue
|
if (originalValue != newValue
|
||||||
&& ![originalValue isEqual: newValue])
|
&& ![originalValue isEqual: newValue])
|
||||||
{
|
{
|
||||||
[self _setObjectValue: newValue
|
[self _setObjectValue: newValue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue