1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 00:34:04 +00:00
transmission/macosx/FileTableView.m

12 lines
171 B
Mathematica
Raw Normal View History

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