From c1dcc826faf8984034aa52e2255be9431de1e88c Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 17 Jan 2007 17:34:27 +0000 Subject: [PATCH] file table tool tip now shows full file path --- macosx/InfoWindowController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index eeafa8d79..17b7e21d4 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -706,7 +706,7 @@ ? [[[item objectForKey: @"Size"] stringValue] stringByAppendingString: NSLocalizedString(@" bytes", "Inspector -> Files tab -> table row tooltip")] : nil; else - return [item objectForKey: @"Name"]; + return [[[fTorrents objectAtIndex: 0] downloadFolder] stringByAppendingPathComponent: [item objectForKey: @"Path"]]; } - (NSArray *) peerSortDescriptors