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