mirror of
https://github.com/transmission/transmission.git
synced 2026-04-23 02:10:09 +01:00
18 lines
341 B
Objective-C
18 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
|