mirror of
https://github.com/transmission/transmission.git
synced 2026-05-08 09:39:08 +01:00
add QuickLook to the main window (keeping it in the info window as well)
This commit is contained in:
@@ -924,7 +924,7 @@ typedef enum
|
||||
NSRange visibleRows = [fileOutlineView rowsInRect: [fileOutlineView bounds]];
|
||||
|
||||
int row;
|
||||
for (row = visibleRows.location; row <= row + visibleRows.length; row++)
|
||||
for (row = visibleRows.location; row < NSMaxRange(visibleRows); row++)
|
||||
{
|
||||
id rowItem = [fileOutlineView itemAtRow: row];
|
||||
if ([[folder stringByAppendingPathComponent: [rowItem objectForKey: @"Path"]] isEqualToString: fullPath])
|
||||
|
||||
Reference in New Issue
Block a user