From 9309908a0e5e425314f9e602ed79056134aa7750 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Sat, 27 Nov 2010 17:32:17 +0000 Subject: - 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 --- Source/SPCustomQuery.m | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Source/SPCustomQuery.m') diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m index bfb6f952..f590de42 100644 --- a/Source/SPCustomQuery.m +++ b/Source/SPCustomQuery.m @@ -1486,6 +1486,13 @@ [[dataCell formatter] setTextLimit:[[columnDefinition objectForKey:@"char_length"] integerValue]]; } + // Set the column to right-aligned for numeric data types + if ([[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"integer"] + || [[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"float"]) + { + [dataCell setAlignment:NSRightTextAlignment]; + } + // Set field type for validations [[dataCell formatter] setFieldType:[columnDefinition objectForKey:@"type"]]; [theCol setDataCell:dataCell]; -- cgit v1.2.3