New button images from macHD. Resume without waiting is now orange.

This commit is contained in:
Mitchell Livingston 2006-10-02 05:21:10 +00:00
parent f0adeba042
commit 9d1f714259
6 changed files with 4 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 435 B

View File

@ -358,9 +358,6 @@
[fPeers sortUsingDescriptors: [self peerSortDescriptors]];
[fPeerTable reloadData];
#warning use [fpeers count]
//[fPeerTableStatusField setStringValue: [NSString stringWithFormat: @"%d of %d connected",
// [torrent totalPeers], [fPeers count]]];
}
- (BOOL) validateMenuItem: (NSMenuItem *) menuItem

View File

@ -33,7 +33,7 @@
- (void) placeBar: (NSImage *) barImage width: (float) width point: (NSPoint) point;
- (void) buildSimpleBar: (float) width point: (NSPoint) point;
//- (void) buildAdvancedBar: (float) widthFloat point: (NSPoint) point;
- (void) buildAdvancedBar: (float) widthFloat point: (NSPoint) point;
@end
@ -158,9 +158,9 @@
point.x += 1.0;
//place actual advanced bar
NSImage * img = [info objectForKey: @"AdvancedBar"];
[img setSize: NSMakeSize(widthFloat, BAR_HEIGHT)];
[img compositeToPoint: point operation: NSCompositeSourceOver];
NSImage * image = [info objectForKey: @"AdvancedBar"];
[image setSize: NSMakeSize(widthFloat, BAR_HEIGHT)];
[image compositeToPoint: point operation: NSCompositeSourceOver];
[self placeBar: fProgressAdvanced width: widthFloat point: point];