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:
parent
fb40c34f5f
commit
f21d1400f1
1 changed files with 1 additions and 1 deletions
|
|
@ -485,7 +485,7 @@ public:
|
|||
height += comp->getHeight();
|
||||
}
|
||||
|
||||
setSize (maxWidth, height);
|
||||
setSize (maxWidth, jmax (height, 100));
|
||||
}
|
||||
|
||||
~ParametersPanel() override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue