aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableContent.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-11-27 17:32:17 +0000
committerrowanbeentje <rowan@beent.je>2010-11-27 17:32:17 +0000
commit9309908a0e5e425314f9e602ed79056134aa7750 (patch)
treebe8af7e546bef5b88022af701aec8612b77740d7 /Source/SPTableContent.m
parent7019db6cf6d23e21e54af987f02b35cf816a89ff (diff)
downloadsequelpro-9309908a0e5e425314f9e602ed79056134aa7750.tar.gz
sequelpro-9309908a0e5e425314f9e602ed79056134aa7750.tar.bz2
sequelpro-9309908a0e5e425314f9e602ed79056134aa7750.zip
- Right-align numeric columns in table content views and custom query results
- Fix exceptions caused by nil SSL locations when re-saving old session files
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r--Source/SPTableContent.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m
index 5b7f4a4b..393e0e94 100644
--- a/Source/SPTableContent.m
+++ b/Source/SPTableContent.m
@@ -483,6 +483,14 @@
} else {
dataCell = [[[SPTextAndLinkCell alloc] initTextCell:@""] autorelease];
}
+
+ // Set the column to right-aligned for numeric data types
+ if ([[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"integer"]
+ || [[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"float"])
+ {
+ [dataCell setAlignment:NSRightTextAlignment];
+ }
+
[dataCell setEditable:YES];
// Set the line break mode and an NSFormatter subclass which truncates long strings for display