have priority option display when hovered over in the open window

This commit is contained in:
Mitchell Livingston 2008-01-04 15:32:19 +00:00
parent 138c825573
commit f7d9ab413e
1 changed files with 8 additions and 1 deletions

View File

@ -55,6 +55,8 @@
- (void) awakeFromNib
{
[[self window] setAcceptsMouseMovedEvents: YES];
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(updateGroupMenu:)
name: @"UpdateGroups" object: nil];
@ -156,6 +158,11 @@
[fGroupPopUp selectItemWithTag: groupValue];
}
- (void) mouseMoved: (NSEvent *) event
{
[fFileController setHoverRowForEvent: event];
}
@end
@implementation AddWindowController (Private)
@ -176,7 +183,7 @@
[fTorrent changeDownloadFolder: fDestination];
#warning make sure to reload file table
[fFileController reloadData];
}
else
{