don't reload the table info when the the same torrents are selected

This commit is contained in:
Mitchell Livingston 2008-02-27 13:59:26 +00:00
parent 598cb4a0d5
commit a9213b0f4b
1 changed files with 3 additions and 0 deletions

View File

@ -195,6 +195,9 @@ typedef enum
- (void) setInfoForTorrents: (NSArray *) torrents
{
if (fTorrents && [fTorrents isEqualToArray: torrents])
return;
[fTorrents release];
fTorrents = [torrents retain];