mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 19:31:16 -07:00
Added deepcopy function
CURA-1578
This commit is contained in:
parent
386cd40a03
commit
a3618c243d
1 changed files with 4 additions and 1 deletions
|
|
@ -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()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue