Changeset 10861 for trunk/macosx/Controller.m
- Timestamp:
- Jun 25, 2010, 10:19:28 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r10559 r10861 1889 1889 Torrent * torrent = [notification object]; 1890 1890 1891 if ([ torrent isActive])1891 if ([[[notification userInfo] objectForKey: @"WasRunning"] boolValue]) 1892 1892 { 1893 1893 if (!fSoundPlaying && [fDefaults boolForKey: @"PlayDownloadSound"]) … … 1919 1919 object: [torrent dataLocation]]; 1920 1920 1921 if ([ fDefaults boolForKey: @"QueueSeed"] && [self numToStartFromQueue: NO] == 0)1921 if ([torrent isActive] && [fDefaults boolForKey: @"QueueSeed"] && [self numToStartFromQueue: NO] == 0) 1922 1922 { 1923 1923 [torrent stopTransfer]; … … 1932 1932 { 1933 1933 Torrent * torrent = [notification object]; 1934 if ([torrent isActive]) 1935 { 1936 if ([fDefaults boolForKey: @"Queue"] && [self numToStartFromQueue: YES] == 0) 1937 { 1938 [torrent stopTransfer]; 1939 [torrent setWaitToStart: YES]; 1940 } 1934 if ([torrent isActive] && [fDefaults boolForKey: @"Queue"] && [self numToStartFromQueue: YES] == 0) 1935 { 1936 [torrent stopTransfer]; 1937 [torrent setWaitToStart: YES]; 1941 1938 } 1942 1939
Note: See TracChangeset
for help on using the changeset viewer.