1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Enforce a minimum height for GenericAudioProcessorEditor

This commit is contained in:
ed 2019-08-09 10:26:20 +01:00
parent fb40c34f5f
commit f21d1400f1

View file

@ -485,7 +485,7 @@ public:
height += comp->getHeight();
}
setSize (maxWidth, height);
setSize (maxWidth, jmax (height, 100));
}
~ParametersPanel() override