diff options
author | rowanbeentje <rowan@beent.je> | 2012-12-21 01:12:58 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-12-21 01:12:58 +0000 |
commit | f902d968af40f930d9d1350ca15909a274aafc3d (patch) | |
tree | 9b1f467f52d5d945a13eba2524918873b247d9d1 /Source/SPNarrowDownCompletion.m | |
parent | ca5787cbe6d031b9d14639b54ada26cb12964c17 (diff) | |
download | sequelpro-f902d968af40f930d9d1350ca15909a274aafc3d.tar.gz sequelpro-f902d968af40f930d9d1350ca15909a274aafc3d.tar.bz2 sequelpro-f902d968af40f930d9d1350ca15909a274aafc3d.zip |
- Convert all old .tiff resource images to .png format
- Recompress all pngs losslessly to reduce disk use slightly
- Remove old unused images
- Switch some code over to imageNamed: to allow easier Retina additions in future
Diffstat (limited to 'Source/SPNarrowDownCompletion.m')
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index a1ba5808..c808f220 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -144,12 +144,12 @@ [self setupInterface]; syncArrowImages = [[NSArray alloc] initWithObjects: - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_01" ofType:@"tiff"]] autorelease], - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_02" ofType:@"tiff"]] autorelease], - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_03" ofType:@"tiff"]] autorelease], - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_04" ofType:@"tiff"]] autorelease], - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_05" ofType:@"tiff"]] autorelease], - [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sync_arrows_06" ofType:@"tiff"]] autorelease], + [NSImage imageNamed:@"sync_arrows_01"], + [NSImage imageNamed:@"sync_arrows_02"], + [NSImage imageNamed:@"sync_arrows_03"], + [NSImage imageNamed:@"sync_arrows_04"], + [NSImage imageNamed:@"sync_arrows_05"], + [NSImage imageNamed:@"sync_arrows_06"], nil]; } |