* Source/NSTableColumn.m (-initWithIdentifier:): Make data

cell editable by default.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34547 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2012-01-15 21:34:40 +00:00
parent 4354640dd1
commit df6635d6a8
2 changed files with 6 additions and 0 deletions

View file

@ -116,6 +116,7 @@
_headerCell = [[NSTableHeaderCell alloc] init];
_dataCell = [[NSTextFieldCell alloc] init];
[_dataCell setLineBreakMode: NSLineBreakByTruncatingTail];
[_dataCell setEditable: YES];
_headerToolTip = nil;
_sortDescriptorPrototype = nil;