1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Made sure that the DrawableImage copy constructor also copies the component bounds.

This commit is contained in:
jules 2014-11-05 10:28:46 +00:00
parent 817c80ed19
commit 01e1421613

View file

@ -37,6 +37,7 @@ DrawableImage::DrawableImage (const DrawableImage& other)
overlayColour (other.overlayColour),
bounds (other.bounds)
{
setBounds (other.getBounds());
}
DrawableImage::~DrawableImage()