Changeset 1227 for trunk/macosx/TorrentTableView.m
- Timestamp:
- Dec 15, 2006, 4:56:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/TorrentTableView.m
r1044 r1227 107 107 { 108 108 if ([self pointInMinimalStatusRect: fClickPoint]) 109 { 109 110 [(TorrentCell *)[[self tableColumnWithIdentifier: @"Torrent"] dataCell] toggleMinimalStatus]; 111 fClickPoint = NSZeroPoint; 112 } 110 113 111 114 [super mouseDown: event]; … … 142 145 else if (sameRow && [self pointInRevealRect: point] && [self pointInRevealRect: fClickPoint]) 143 146 [[fTorrents objectAtIndex: row] revealData]; 144 else if ([event clickCount] == 2 )147 else if ([event clickCount] == 2 && !NSEqualPoints(fClickPoint, NSZeroPoint)) 145 148 { 146 149 if ([self pointInIconRect: point])
Note: See TracChangeset
for help on using the changeset viewer.