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:
parent
b5a06b0e2f
commit
94330cbb53
1 changed files with 9 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue