From 7a9c22eafeac0e365532a08af3b2466b2b86e8c4 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 4 Aug 2016 08:54:50 +0100 Subject: [PATCH] AlertWindow::show() method sets AlertWindow to be always on top so it isn't hidden by other components --- modules/juce_gui_basics/windows/juce_AlertWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/juce_gui_basics/windows/juce_AlertWindow.cpp b/modules/juce_gui_basics/windows/juce_AlertWindow.cpp index 19c9468829..633baed8ba 100644 --- a/modules/juce_gui_basics/windows/juce_AlertWindow.cpp +++ b/modules/juce_gui_basics/windows/juce_AlertWindow.cpp @@ -593,6 +593,8 @@ private: jassert (alertBox != nullptr); // you have to return one of these! + alertBox-> setAlwaysOnTop (true); + #if JUCE_MODAL_LOOPS_PERMITTED if (modal) {