diff options
author | mattlangtree <matt@northofthree.com> | 2012-12-12 13:36:07 +0000 |
---|---|---|
committer | mattlangtree <matt@northofthree.com> | 2012-12-12 13:36:07 +0000 |
commit | 9c0184ce97a1e158d926afb8e4be034c61999563 (patch) | |
tree | aa24fb9b54a478d79fffea114637129af5051186 /Source | |
parent | daf9f3996968a38b761ea3161fa49f5a7040f01d (diff) | |
download | sequelpro-9c0184ce97a1e158d926afb8e4be034c61999563.tar.gz sequelpro-9c0184ce97a1e158d926afb8e4be034c61999563.tar.bz2 sequelpro-9c0184ce97a1e158d926afb8e4be034c61999563.zip |
Replace 1x .tiff graphics with 1x and 2x png Retina graphics.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPNavigatorController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPNavigatorController.m b/Source/SPNavigatorController.m index 82bf42f8..7cceefd2 100644 --- a/Source/SPNavigatorController.m +++ b/Source/SPNavigatorController.m @@ -163,7 +163,7 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte connectionIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"network-small" ofType:@"tif"]]; databaseIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"database-small" ofType:@"png"]]; - tableIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"table-small-square" ofType:@"tiff"]]; + tableIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"table-small-square" ofType:@"png"]]; viewIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"table-view-small-square" ofType:@"tiff"]]; procedureIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"proc-small" ofType:@"png"]]; functionIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"func-small" ofType:@"png"]]; |