From b4506653ecd1eaefb6fb3d3259f5a031491adad8 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 24 Jan 2007 03:15:27 +0000 Subject: [PATCH] make newly finished download actually wait in queue --- macosx/Controller.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/macosx/Controller.m b/macosx/Controller.m index b82cfade1..53bc63b21 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1302,6 +1302,12 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy if (![fWindow isKeyWindow]) fCompleted++; + if ([fDefaults boolForKey: @"QueueSeed"]) + { + [torrent stopTransfer]; + [torrent setWaitToStart: YES]; + } + [self updateTorrentsInQueue]; }