Reveal in file table works again.

This commit is contained in:
Mitchell Livingston 2006-08-20 18:37:14 +00:00
parent a99e6ab33a
commit 549e375b95
1 changed files with 2 additions and 1 deletions

View File

@ -519,7 +519,8 @@
NSIndexSet * indexSet = [fFileTable selectedRowIndexes];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
[[NSWorkspace sharedWorkspace] selectFile: [fFiles objectAtIndex: i] inFileViewerRootedAtPath: nil];
[[NSWorkspace sharedWorkspace] selectFile: [[fFiles objectAtIndex: i] objectForKey: @"Name"]
inFileViewerRootedAtPath: nil];
}
- (void) setRatioCheck: (id) sender