Added deepcopy function

CURA-1578
This commit is contained in:
Jaime van Kessel 2016-07-06 16:38:35 +02:00
parent 386cd40a03
commit a3618c243d

View File

@ -5,4 +5,7 @@ class MultiMaterialDecorator(SceneNodeDecorator):
super().__init__() super().__init__()
def isMultiMaterial(self): def isMultiMaterial(self):
return True return True
def __deepcopy__(self, memo):
return MultiMaterialDecorator()