Skip to content
This repository has been archived by the owner on Nov 1, 2017. It is now read-only.

Commit

Permalink
send -mouseExited: before -mouseEntered:
Browse files Browse the repository at this point in the history
  • Loading branch information
joshaber committed May 20, 2012
1 parent 95809b9 commit afca394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/UIKit/TUINSView.m
Expand Up @@ -268,8 +268,8 @@ - (void)_updateHoverView:(TUIView *)_newHoverView withEvent:(NSEvent *)event
}

if(_newHoverView != _hoverView) {
[_newHoverView mouseEntered:event];
[_hoverView mouseExited:event];
[_newHoverView mouseEntered:event];
_hoverView = _newHoverView;

if([[self window] isKeyWindow]) {
Expand Down

0 comments on commit afca394

Please sign in to comment.