mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Disabled mouse interactions with the splash screen once it has started fading
This commit is contained in:
parent
3eaeb3795e
commit
b709bd8d98
1 changed files with 4 additions and 1 deletions
|
|
@ -348,7 +348,10 @@ void JUCESplashScreen::parentHierarchyChanged()
|
|||
|
||||
bool JUCESplashScreen::hitTest (int x, int y)
|
||||
{
|
||||
return getLogoArea (getLocalBounds().toFloat()).contains ((float) x, (float) y);
|
||||
if (! hasStartedFading)
|
||||
return getLogoArea (getLocalBounds().toFloat()).contains ((float) x, (float) y);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void JUCESplashScreen::mouseUp (const MouseEvent&)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue