mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
11 lines
171 B
Objective-C
11 lines
171 B
Objective-C
#import "FileTableView.h"
|
|
|
|
@implementation FileTableView
|
|
|
|
- (void) mouseDown: (NSEvent *) event
|
|
{
|
|
[[self window] makeKeyWindow];
|
|
[super mouseDown: event];
|
|
}
|
|
|
|
@end
|