Browse Source

VST3 window size fix.

tags/2021-05-28
jules 11 years ago
parent
commit
2e8b09b3eb
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

+ 5
- 0
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp View File

@@ -1502,6 +1502,11 @@ public:
{
rect.right = (Steinberg::int32) getWidth();
rect.bottom = (Steinberg::int32) getHeight();
view->checkSizeConstraint (&rect);
setSize ((int) rect.getWidth(),
(int) rect.getHeight());
view->onSize (&rect);
}
else


Loading…
Cancel
Save