1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 18:25:35 +00:00

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

View file

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