Merged Mitchell's changes, this includes:

Adds stop at ratio,
Adds sorting by name, date or state,
Seperates Info window into its own nib,
Adds option to enable or disabled autostarting downloads,
Seperates Network / Transfers in the Preferences
This commit is contained in:
Eric Petit
2006-05-25 12:22:19 +00:00
parent 30a89e1f70
commit 7e244c6792
21 changed files with 890 additions and 575 deletions

View File

@@ -7,7 +7,19 @@
[self setState: NSOnState];
[self highlight: YES];
[NSMenu popUpContextMenu: [self menu] withEvent: event forView: self];
NSPoint location = NSMakePoint(3, -2);
NSEvent * theEvent= [NSEvent mouseEventWithType: [event type]
location: location
modifierFlags: [event modifierFlags]
timestamp: [event timestamp]
windowNumber: [event windowNumber]
context: [event context]
eventNumber: [event eventNumber]
clickCount: [event clickCount]
pressure: [event pressure]];
[NSMenu popUpContextMenu: [self menu] withEvent: theEvent forView: self];
[self setState: NSOffState];
[self highlight: NO];