Clicking the File tableview in the Inspector will now make the inspector the key window, making reveal for it work again and not appear gray when clicked.

This commit is contained in:
Mitchell Livingston
2006-06-12 03:03:16 +00:00
parent 7d760579e1
commit d498cc77d9
5 changed files with 29 additions and 0 deletions

11
macosx/FileTableView.m Normal file
View File

@@ -0,0 +1,11 @@
#import "FileTableView.h"
@implementation FileTableView
- (void) mouseDown: (NSEvent *) event
{
[[self window] makeKeyWindow];
[super mouseDown: event];
}
@end