diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-23 14:03:06 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-23 14:03:06 +0000 |
commit | b66006f3755c6a57dfc60d4133bc4dc4da0fef56 (patch) | |
tree | 0257aedbc6bb35842f3a77d67e96f1bed12e827c | |
parent | e3d950291ae9c74ca49f14e560bf96384a263489 (diff) | |
download | sequelpro-b66006f3755c6a57dfc60d4133bc4dc4da0fef56.tar.gz sequelpro-b66006f3755c6a57dfc60d4133bc4dc4da0fef56.tar.bz2 sequelpro-b66006f3755c6a57dfc60d4133bc4dc4da0fef56.zip |
Add missing space to auto increment value field on extended information view.
-rw-r--r-- | Source/SPExtendedTableInfo.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m index d6b20d9a..f48ce2ca 100644 --- a/Source/SPExtendedTableInfo.m +++ b/Source/SPExtendedTableInfo.m @@ -339,7 +339,7 @@ [tableRowNumber setStringValue:[NSString stringWithFormat:@"%@%@", NSLocalizedString(@"Number of rows: ", @"table info number of rows label"), [self _formatValueWithKey:@"Rows" inDictionary:statusFields]]]; [tableRowFormat setStringValue:[NSString stringWithFormat:@"%@%@", NSLocalizedString(@"Row format: ", @"table info row format label"), [self _formatValueWithKey:@"Row_format" inDictionary:statusFields]]]; [tableRowAvgLength setStringValue:[NSString stringWithFormat:@"%@%@", NSLocalizedString(@"Avg. row length: ", @"table info average row length label"), [self _formatValueWithKey:@"Avg_row_length" inDictionary:statusFields]]]; - [tableRowAutoIncrement setStringValue:[self _formatValueWithKey:@"Auto_increment" inDictionary:statusFields]]; + [tableRowAutoIncrement setStringValue:[NSString stringWithFormat:@" %@", [self _formatValueWithKey:@"Auto_increment" inDictionary:statusFields]]]; // Set size values [tableDataSize setStringValue:[NSString stringWithFormat:@"%@%@", NSLocalizedString(@"Data size: ", @"table info data size label"), [self _formatValueWithKey:@"Data_length" inDictionary:statusFields]]]; |