diff options
Diffstat (limited to 'TableContent.m')
-rw-r--r-- | TableContent.m | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/TableContent.m b/TableContent.m index 86ca54ce..70775a11 100644 --- a/TableContent.m +++ b/TableContent.m @@ -1489,9 +1489,10 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn //show only first 50 characters to speed up interface (but return everything when this method is used to return the current result) // if ( ([theValue length] > 100) && aTableView ) { } - if ( ([(NSString *)theValue length] > 100) && aTableView ) { - theValue = [NSString stringWithFormat:@"%@(...)", [theValue substringToIndex:100]]; - } + +// if ( ([(NSString *)theValue length] > 100) && aTableView ) { +// theValue = [NSString stringWithFormat:@"%@(...)", [theValue substringToIndex:100]]; +// } return theValue; } |