[self updateTimeMachineExclude];
}
-- (void) startTransferNoQueue
+- (void) startTransferIgnoringQueue: (BOOL) ignoreQueue
{
if ([self alertForRemainingDiskSpace])
{
- tr_torrentStartNow(fHandle);
+ ignoreQueue ? tr_torrentStartNow(fHandle) : tr_torrentStart(fHandle);
[self update];
//capture, specifically, stop-seeding settings changing to unlimited
}
}
-#warning merge
+- (void) startTransferNoQueue
+{
+ [self startTransferIgnoringQueue: YES];
+}
+
- (void) startTransfer
{
- if ([self alertForRemainingDiskSpace])
- {
- tr_torrentStart(fHandle);
- [self update];
-
- //capture, specifically, stop-seeding settings changing to unlimited
- [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
- }
+ [self startTransferIgnoringQueue: NO];
}
- (void) stopTransfer
#warning image should use new gear
NSString * actionImageString;
if (fMouseDownActionButton)
- #warning we can get rid of the on 10.7
+ #warning we can get rid of this on 10.7
actionImageString = @"ActionOn.png";
else if (!fTracking && fHoverAction)
actionImageString = @"ActionHover.png";