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

WindowUtils: Make areThereAnyAlwaysOnTopWindows() public

This commit is contained in:
reuk 2023-05-03 13:19:35 +01:00
parent ad59f71b99
commit 53bfd5b16d
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
22 changed files with 257 additions and 69 deletions

View file

@ -115,7 +115,7 @@ FileChooserDialogBox::FileChooserDialogBox (const String& name,
if (parentComp != nullptr)
parentComp->addAndMakeVisible (this);
else
setAlwaysOnTop (detail::WindowingHelpers::areThereAnyAlwaysOnTopWindows());
setAlwaysOnTop (WindowUtils::areThereAnyAlwaysOnTopWindows());
}
FileChooserDialogBox::~FileChooserDialogBox()