diff options
author | avenjamin <avenjamin@gmail.com> | 2008-09-25 17:01:50 +0000 |
---|---|---|
committer | avenjamin <avenjamin@gmail.com> | 2008-09-25 17:01:50 +0000 |
commit | 7936f89b7b146a2a9087c77f42677ab9d9ee96c8 (patch) | |
tree | f0bac795468dc47e60d88c33469faa87cbe75355 /TableContent.m | |
parent | a2b5b64a367e9630b87014c8bba5ab431cd2c3b9 (diff) | |
download | sequelpro-7936f89b7b146a2a9087c77f42677ab9d9ee96c8.tar.gz sequelpro-7936f89b7b146a2a9087c77f42677ab9d9ee96c8.tar.bz2 sequelpro-7936f89b7b146a2a9087c77f42677ab9d9ee96c8.zip |
Fixed issue #56 - "Data Corruption"
Note that this fix may not be the best solution.
However it solves the issue in the meantime.
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; } |