1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-05 14:04:15 +00:00

typing in the file table will select the appropriate item in Leopard

This commit is contained in:
Mitchell Livingston 2007-10-27 14:28:58 +00:00
parent 515d04de1a
commit 3a62681b17

View file

@ -804,6 +804,11 @@ typedef enum
}
}
- (NSString *)outlineView:(NSOutlineView *)outlineView typeSelectStringForTableColumn:(NSTableColumn *)tableColumn item:(id)item
{
return [item objectForKey: @"Name"];
}
- (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect
tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation
{