mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Linux: Fixed an occasional bug causing the top-left of VST2 plug-ins to be incorrect
This commit is contained in:
parent
f5991879c5
commit
eedb9e9833
1 changed files with 4 additions and 0 deletions
|
|
@ -2927,7 +2927,11 @@ public:
|
|||
if (auto* peer = getTopLevelComponent()->getPeer())
|
||||
setScaleFactorAndDispatchMessage (peer->getPlatformScaleFactor());
|
||||
|
||||
#if JUCE_LINUX
|
||||
MessageManager::callAsync ([this] { componentMovedOrResized (true, true); });
|
||||
#else
|
||||
componentMovedOrResized (true, true);
|
||||
#endif
|
||||
}
|
||||
|
||||
using ComponentMovementWatcher::componentVisibilityChanged;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue