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

VST3: Repaint editor when size changes in Bitwig on Linux to fix UI glitches

This commit is contained in:
ed 2021-02-11 10:57:12 +00:00
parent b5a06b0e2f
commit 94330cbb53

View file

@ -1567,8 +1567,15 @@ private:
{
lastBounds = b;
const ScopedValueSetter<bool> resizingParentSetter (resizingParent, true);
resizeHostWindow();
{
const ScopedValueSetter<bool> resizingParentSetter (resizingParent, true);
resizeHostWindow();
}
#if JUCE_LINUX
if (getHostType().isBitwigStudio())
repaint();
#endif
}
}