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