* Palettes/3Containers/GormTableColumnAttributesInspector.m:

Set editable state of the data cell to match editable state
of the column. (NSTableView now refuses to edit non-editable
data cells in editable columns.)


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@34551 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2012-01-15 21:46:00 +00:00
parent fe4aa441cf
commit 5734051eb2
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2012-01-15 Eric Wasylishen <ewasylishen@gmail.com>
* Palettes/3Containers/GormTableColumnAttributesInspector.m:
Set editable state of the data cell to match editable state
of the column. (NSTableView now refuses to edit non-editable
data cells in editable columns.)
2012-01-15 Eric Wasylishen <ewasylishen@gmail.com>
* Palettes/3Containers/GormTabViewAttributesInspector.m:

View file

@ -178,6 +178,7 @@
// initialize
cell = [[cls alloc] init];
[cell setEditable: [object isEditable]];
[object setDataCell: cell];
[[object tableView] setNeedsDisplay: YES];