Changeset 2091
- Timestamp:
- Jun 16, 2007, 3:03:23 PM (15 years ago)
- Location:
- branches/file_selection/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/file_selection/macosx/InfoWindowController.m
r2088 r2091 888 888 [torrent setFileCheckState: [object intValue] != NSOffState ? NSOnState : NSOffState 889 889 forIndexes: [item objectForKey: @"Indexes"]]; 890 891 [torrent update];892 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self];893 890 [fFileOutline reloadData]; 894 891 } -
branches/file_selection/macosx/Torrent.m
r2089 r2091 345 345 [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentFinishedDownloading" object: self]; 346 346 } 347 else if (tr_getIncomplete(fHandle)) 348 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self]; 347 349 348 350 //check to stop for ratio … … 1366 1368 tr_torrentSetFilePriority(fHandle, index, actualPriority); 1367 1369 } 1370 1371 [self update]; 1372 if (![self isActive]) 1373 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self]; 1368 1374 } 1369 1375
Note: See TracChangeset
for help on using the changeset viewer.