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: Fixed a resizing bug on macOS FL Studio
tags/2021-05-28
ed
7 years ago
parent
aec716c36e
commit
e8a31171fe
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp
+ 1
- 1
modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp
View File
@@ -1165,7 +1165,7 @@ private:
#if JUCE_WINDOWS
#if JUCE_WINDOWS
setSize (w, h);
setSize (w, h);
#else
#else
if (owner.macHostWindow != nullptr && ! (host.isWavelab() || host.isReaper() || host.isBitwigStudio()))
if (owner.macHostWindow != nullptr && ! (host.isWavelab() || host.isReaper() || host.isBitwigStudio()
|| host.isFruityLoops()
))
juce::setNativeHostWindowSizeVST (owner.macHostWindow, this, w, h, owner.isNSView);
juce::setNativeHostWindowSizeVST (owner.macHostWindow, this, w, h, owner.isNSView);
#endif
#endif
Write
Preview
Loading…
Cancel
Save