This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
VST3 window size fix.
tags/2021-05-28
jules
11 years ago
parent
0bf1862ec6
commit
2e8b09b3eb
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save