1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00
transmission/macosx/InfoWindow.m

17 lines
341 B
Objective-C

#import "InfoWindow.h"
#import "InfoWindowController.h"
@implementation InfoWindow
- (void) awakeFromNib
{
[self setBecomesKeyOnlyIfNeeded: YES];
[self setAcceptsMouseMovedEvents: YES];
}
- (void) mouseMoved: (NSEvent *) event
{
[(InfoWindowController *)[self windowController] setFileOutlineHoverRowForEvent: event];
}
@end