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

Also copy transforms when copying drawables

This commit is contained in:
hogliux 2015-07-23 15:39:10 +01:00
parent 6bb8bf3761
commit f59ab9e4a3

View file

@ -32,6 +32,7 @@ Drawable::Drawable (const Drawable& other)
: Component (other.getName())
{
setComponentID (other.getComponentID());
setTransform (other.getTransform());
}
Drawable::~Drawable()