Changeset 5809
- Timestamp:
- May 11, 2008, 9:57:34 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r5805 r5809 4 4 http://trac.transmissionbt.com/query?group=component&milestone=1.30 5 5 - Mac 6 + Status strings are toggled from the action menu(they are no longer clickable)6 + Status strings are toggled from the action button (they are no longer clickable) 7 7 8 8 1.20 (2008/05/09) -
trunk/macosx/Controller.m
r5808 r5809 2521 2521 - (BOOL) outlineView: (NSOutlineView *) outlineView isItemExpandable: (id) item 2522 2522 { 2523 2524 2523 return ![item isKindOfClass: [Torrent class]]; 2525 2524 } … … 2666 2665 [torrent setGroupValue: groupValue];*/ 2667 2666 2668 2669 2667 NSArray * groupTorrents = [item objectForKey: @"Torrents"]; 2670 while (newRow > 0 && [movingTorrents containsObject: [groupTorrents objectAtIndex: newRow-1]]) 2671 newRow--; 2672 2673 if (newRow > 0) 2674 topTorrent = [groupTorrents objectAtIndex: newRow-1]; 2668 for (i = newRow-1; i >= 0; i--) 2669 { 2670 Torrent * tempTorrent = [groupTorrents objectAtIndex: i]; 2671 if (![movingTorrents containsObject: tempTorrent]) 2672 { 2673 topTorrent = tempTorrent; 2674 break; 2675 } 2676 } 2675 2677 } 2676 2678 else 2677 2679 { 2678 while (newRow > 0 && [movingTorrents containsObject: [fDisplayedTorrents objectAtIndex: newRow-1]]) 2679 newRow--; 2680 2681 if (newRow > 0) 2682 topTorrent = [fDisplayedTorrents objectAtIndex: newRow-1]; 2680 for (i = newRow-1; i >= 0; i--) 2681 { 2682 Torrent * tempTorrent = [fDisplayedTorrents objectAtIndex: i]; 2683 if (![movingTorrents containsObject: tempTorrent]) 2684 { 2685 topTorrent = tempTorrent; 2686 break; 2687 } 2688 } 2683 2689 } 2684 2690 -
trunk/macosx/TorrentTableView.m
r5808 r5809 140 140 } 141 141 142 - (BOOL)shouldCollapseAutoExpandedItemsForDeposited:(BOOL)deposited143 {144 return NO;145 }146 147 142 - (void) removeAllCollapsedGroups 148 143 {
Note: See TracChangeset
for help on using the changeset viewer.