mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
#4232 Extend tooltip support to disabled files in Inspector->Files
This commit is contained in:
parent
3269d99287
commit
56d56a2e19
1 changed files with 6 additions and 1 deletions
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue