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

Fixed a bug in SidePanel when adding a new content component

This commit is contained in:
ed 2017-11-09 18:18:43 +00:00
parent a2bf8d49b6
commit 1e240aeb48

View file

@ -64,6 +64,8 @@ void SidePanel::setContent (Component* newContent, bool deleteComponentWhenNoLon
contentComponent.setNonOwned (newContent);
addAndMakeVisible (contentComponent);
resized();
}
}