mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* 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:
parent
fe4aa441cf
commit
5734051eb2
2 changed files with 8 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -178,6 +178,7 @@
|
|||
|
||||
// initialize
|
||||
cell = [[cls alloc] init];
|
||||
[cell setEditable: [object isEditable]];
|
||||
[object setDataCell: cell];
|
||||
[[object tableView] setNeedsDisplay: YES];
|
||||
|
||||
|
|
Loading…
Reference in a new issue