Changeset 2473
- Timestamp:
- Jul 24, 2007, 1:04:01 AM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Torrent.m
r2450 r2473 540 540 tr_torrentStop(fHandle); 541 541 [self update]; 542 542 543 543 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self]; 544 544 } -
trunk/macosx/TorrentTableView.m
r2149 r2473 248 248 torrent = [fTorrents objectAtIndex: i]; 249 249 rect = [self pauseRectForRow: i]; 250 251 if ([torrent isActive] )250 251 if ([torrent isActive] && ![torrent isChecking]) 252 252 image = NSPointInRect(fClickPoint, rect) ? fPauseOnIcon : fPauseOffIcon; 253 253 else if ([torrent isPaused]) … … 262 262 else 263 263 image = nil; 264 264 265 265 if (image) 266 266 [image compositeToPoint: NSMakePoint(rect.origin.x, NSMaxY(rect)) operation: NSCompositeSourceOver];
Note: See TracChangeset
for help on using the changeset viewer.