diff --git a/macosx/TorrentTableView.m b/macosx/TorrentTableView.m index 900db88b6..efbce950a 100644 --- a/macosx/TorrentTableView.m +++ b/macosx/TorrentTableView.m @@ -449,10 +449,7 @@ NSImage * pauseImage = nil; NSRect pauseRect = [self pauseRectForRow: row]; if ([torrent isActive]) - { - if (![torrent isChecking]) - pauseImage = fClickIn && NSPointInRect(fClickPoint, pauseRect) ? fPauseOnIcon : fPauseOffIcon; - } + pauseImage = fClickIn && NSPointInRect(fClickPoint, pauseRect) ? fPauseOnIcon : fPauseOffIcon; else if ([torrent isPaused]) { BOOL inPauseRect = fClickIn && NSPointInRect(fClickPoint, pauseRect);