Hi, for some reason this isn’t being called when resizing the window in a plugin. Works fine in standalone.
I’ve made sure that a call to:
setResizable( true, true );
Is made in both cases. Any ideas?
Thanks
Hi, for some reason this isn’t being called when resizing the window in a plugin. Works fine in standalone.
I’ve made sure that a call to:
setResizable( true, true );
Is made in both cases. Any ideas?
Thanks
Which platform and plugin format are you using? Have you tried the AudioPluginDemo to see whether it’s a problem in JUCE or in your specific plugin?
Mac/VST.
I’ll give that a go. thx
yep that works and will allow me to track the issue - thx
could it be that you have setResizable after setSize in the constructor?
are you using
void resized() override
or
void resized()
It was user error - thanks everyone.