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:
parent
c8adff3675
commit
90f9af3e2f
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue