mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
17 lines
341 B
Objective-C
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
|