Skip to content

Commit

Permalink
missing-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Didier Korthoudt authored and Didier Korthoudt committed Dec 8, 2015
1 parent e6148a9 commit 7089abc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AppKit/CPTrackingArea.j
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CPTrackingOwnerImplementsCursorUpdate = 1 << 4;
CPDictionary _userInfo @accessors(getter=userInfo);

CPView _referencingView @accessors(property=view);
CGRect _windowRect @accessors(getter=actualRect);
CGRect _windowRect @accessors(getter=windowRect);

unsigned _implementedOwnerMethods @accessors(getter=implementedOwnerMethods);
}
Expand Down
2 changes: 1 addition & 1 deletion AppKit/CPWindow/CPWindow.j
Original file line number Diff line number Diff line change
Expand Up @@ -3886,7 +3886,7 @@ var interpolate = function(fromValue, toValue, progress)
((trackingOptions & CPTrackingActiveInKeyWindow) && isKeyWindow) ||
((trackingOptions & CPTrackingActiveWhenFirstResponder) && isKeyWindow && (_firstResponder === aView)))
{
if (!(CGRectContainsPoint([aTrackingArea actualRect], point)))
if (!(CGRectContainsPoint([aTrackingArea windowRect], point)))
continue;

[mouseEnteredStack addObject:aTrackingArea];
Expand Down

0 comments on commit 7089abc

Please sign in to comment.