I'm not using the latest tip, but i didn't see any related change, so i'm asking.
When you click on a certain audio-clip you can render it with a plugin. The plugin opens in a separate dialog-window and it seems that all mouse-clicks on popup-windows (which use inside the plugin) are simply ignored?
Don't remember fixing that specific problem, but we have done various fixes for windowing that may have indirectly fixed it. You'd need to give it a try.
Can anybody have a look at this? If Rolis and Steinbergs would work togehter (does latest cubase include a juce based plugin?), i think it could be solved in a few minutes...
I cannot re-produce this bug in Cubase 7.5. Just like you, I've used the JuceDemoPlugin and simply added a ComboBox. I compiled the plug-in for VST2, 64-bit and OS X Compatibility level 10.7. Any other differences I should be aware of? Can anybody else reproduce this bug?
Plugins from other vendors (tried voxengo curve eq), which open also new windows beside the plugin-gui, doesn't seem to be affect by this issue. So this must be a juce specific issue. I tried to debug it, once the popup window was clicked, no move or mousedown/up messages coming through. Any hints? Feeling a little bit alone now. I used the latest tip, 100% unmodified juce.
Cubase uses the runModalForWindow: method from NSApplication for the clip render dialog, the only chance to get auxiliary windows to work is to overwrite worksWhenModal to return true (Maybe this should the default for plugin-in builds, or maybe only for cubase/nuendo hosts)
Thanks, btw i use a lot of different kinds of auxiliary windows, not only popups (incl. resizableWindow), so a option to make worksWhenModal return true, should be applied to every window.