diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-03 18:23:53 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-03 18:23:53 +0000 |
commit | 20ad5eaa3826dc8b5d1fb5496a3c6f49d802c632 (patch) | |
tree | 73b1deea4593bec9e7614bfdfc19301358d32289 /Source/TableContent.m | |
parent | 14bd0cf3680e261b979be98e792bafc5e8e1afd5 (diff) | |
download | sequelpro-20ad5eaa3826dc8b5d1fb5496a3c6f49d802c632.tar.gz sequelpro-20ad5eaa3826dc8b5d1fb5496a3c6f49d802c632.tar.bz2 sequelpro-20ad5eaa3826dc8b5d1fb5496a3c6f49d802c632.zip |
• add Menu Item "Insert NULL value" SHIFT+CTRL+N
- it inserts the value set in the preferences
• a NULL value will be displayed greyed in the Custom Query result
• make usage of NSArrayObjectAtIndex() in TableContent for tableView:willDisplayCell
- and negated the NULL checking for column (is NULL allowed)
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r-- | Source/TableContent.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m index 18cd8e78..93929d00 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -1873,7 +1873,7 @@ */ - (void)tableView:(CMCopyTable *)aTableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn*)aTableColumn row:(int)row { - NSDictionary *column = [dataColumns objectAtIndex:[[aTableColumn identifier] intValue]]; + NSDictionary *column = NSArrayObjectAtIndex(dataColumns, [[aTableColumn identifier] intValue]); // For NULL cell's display the user's NULL value placeholder in grey to easily distinguish it from other values if ([cell respondsToSelector:@selector(setTextColor:)]) { @@ -1882,7 +1882,7 @@ // of the user's NULL value preference which was set in the result array when it was retrieved (see fetchResultAsArray). // Also, as an added measure check that the table column actually allows NULLs to make sure we don't change a cell that // happens to have a value matching the NULL placeholder, but the column doesn't allow NULLs. - [cell setTextColor:([[cell stringValue] isEqualToString:[prefs objectForKey:@"NullValue"]] && [[column objectForKey:@"null"] boolValue]) ? [NSColor lightGrayColor] : [NSColor blackColor]]; + [cell setTextColor:([[cell stringValue] isEqualToString:[prefs objectForKey:@"NullValue"]] && ![[column objectForKey:@"null"] boolValue]) ? [NSColor lightGrayColor] : [NSColor blackColor]]; } // Check if loading of text/blob fields is disabled |