From 3a62681b17cb727f1d85f09e50d64dc474eac2b3 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 27 Oct 2007 14:28:58 +0000 Subject: [PATCH] typing in the file table will select the appropriate item in Leopard --- macosx/InfoWindowController.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index 787e7a8c3..944803341 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -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 {