mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
#4232 Extend tooltip support to disabled files in Inspector->Files
This commit is contained in:
@@ -211,7 +211,12 @@ typedef enum
|
||||
{
|
||||
NSString * ident = [tableColumn identifier];
|
||||
if ([ident isEqualToString: @"Name"])
|
||||
return [fTorrent fileLocation: item];
|
||||
{
|
||||
NSString * path = [fTorrent fileLocation: item];
|
||||
if (!path)
|
||||
path = [[item path] stringByAppendingPathComponent: [item name]];
|
||||
return path;
|
||||
}
|
||||
else if ([ident isEqualToString: @"Check"])
|
||||
{
|
||||
switch ([cell state])
|
||||
|
||||
Reference in New Issue
Block a user