I like resizable vector based plugins.
To set a minimal plugin size I added
void MyPluginProcessorEditor::resized() { const int minWidth = 360; const int minHeight = 320; if (getWidth() < minWidth || getHeight() < minHeight) { setSize (jmax (minWidth, getWidth()), jmax (minHeight, getHeight())); } ... }
to my editor.
Would you also do it like this? Or are there other approaches to set a minimal bound?