mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-17 00:44:19 +00:00
When bridging 32-bit/64-bit plugins on Windows, the plugin is hosted in an auxilliary process, and the plugin's editor is embedded into an HWND owned by a different process (the plugin host). Previously, the `isForegroundProcess` check would fail for bridged plugins, because the foreground window may belong to the DAW, rather than to the auxilliary hosting process. This patch adds an additional check, to find whether the same process owns both the foreground window, and the window which embeds the PopupMenu's target component. In this case, we avoid immediately dismissing the PopupMenu. |
||
|---|---|---|
| .. | ||
| juce_AlertWindow.cpp | ||
| juce_AlertWindow.h | ||
| juce_CallOutBox.cpp | ||
| juce_CallOutBox.h | ||
| juce_ComponentPeer.cpp | ||
| juce_ComponentPeer.h | ||
| juce_DialogWindow.cpp | ||
| juce_DialogWindow.h | ||
| juce_DocumentWindow.cpp | ||
| juce_DocumentWindow.h | ||
| juce_NativeMessageBox.h | ||
| juce_ResizableWindow.cpp | ||
| juce_ResizableWindow.h | ||
| juce_ThreadWithProgressWindow.cpp | ||
| juce_ThreadWithProgressWindow.h | ||
| juce_TooltipWindow.cpp | ||
| juce_TooltipWindow.h | ||
| juce_TopLevelWindow.cpp | ||
| juce_TopLevelWindow.h | ||