1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for lost mouse-exits when modal components are present.

This commit is contained in:
jules 2012-07-18 17:45:46 +01:00
parent c2666bfe61
commit 330abbc8df

View file

@ -2317,9 +2317,6 @@ void Component::internalMouseEnter (MouseInputSource& source, const Point<int>&
void Component::internalMouseExit (MouseInputSource& source, const Point<int>& relativePos, const Time& time)
{
if (isCurrentlyBlockedByAnotherModalComponent() && source.getComponentUnderMouse() != this)
return;
if (flags.repaintOnMouseActivityFlag)
repaint();