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

Fixed a positioning bug in SidePanel::calculateBoundsInParent()

This commit is contained in:
ed 2020-01-30 08:52:22 +00:00
parent c8adff3675
commit 90f9af3e2f

View file

@ -245,7 +245,7 @@ void SidePanel::componentMovedOrResized (Component& component, bool wasMoved, bo
Rectangle<int> SidePanel::calculateBoundsInParent (Component& parentComp) const
{
auto parentBounds = parentComp.getBounds();
auto parentBounds = parentComp.getLocalBounds();
if (isOnLeft)
{