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

Fixed positioning of VST3 windows in Reaper

This commit is contained in:
tpoole 2016-11-24 12:36:36 +00:00
parent c0987f2b32
commit 119640f55f

View file

@ -787,7 +787,11 @@ private:
rect = *newSize;
if (component != nullptr)
{
component->setSize (rect.getWidth(), rect.getHeight());
if (ComponentPeer* const peer = component->getPeer())
peer->updateBounds();
}
return kResultTrue;
}