1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Fix for the copy constructor of DrawableRectangle

This commit is contained in:
jules 2016-08-18 14:09:13 +01:00
parent 55194a09d2
commit 48db4fa75a

View file

@ -31,6 +31,7 @@ DrawableRectangle::DrawableRectangle (const DrawableRectangle& other)
bounds (other.bounds),
cornerSize (other.cornerSize)
{
rebuildPath();
}
DrawableRectangle::~DrawableRectangle()