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

Reverted #bea45f84 - this only fixed SVG positioning bugs for limited cases

This commit is contained in:
tpoole 2016-09-05 22:12:27 +01:00
parent 9276540e7d
commit 004f829c2b

View file

@ -192,7 +192,7 @@ void DrawableComposite::updateBoundsToFitChildren()
for (int i = getNumChildComponents(); --i >= 0;)
if (Component* const c = getChildComponent(i))
c->setBounds (c->getBoundsInParent() - delta);
c->setBounds (c->getBounds() - delta);
}
setBounds (childArea);