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

AlertWindow::show() method sets AlertWindow to be always on top so it isn't hidden by other components

This commit is contained in:
ed 2016-08-04 08:54:50 +01:00
parent a744cd3acc
commit 7a9c22eafe

View file

@ -593,6 +593,8 @@ private:
jassert (alertBox != nullptr); // you have to return one of these! jassert (alertBox != nullptr); // you have to return one of these!
alertBox-> setAlwaysOnTop (true);
#if JUCE_MODAL_LOOPS_PERMITTED #if JUCE_MODAL_LOOPS_PERMITTED
if (modal) if (modal)
{ {