Arch: Fixed not working addition/subtraction in components

This commit is contained in:
Yorik van Havre
2018-03-14 13:44:10 -03:00
parent 41db9e2a55
commit 8c8cee9820

View File

@@ -338,7 +338,10 @@ class Component:
if self.clone(obj):
return
if obj.Base:
obj.Shape = self.spread(obj,obj.Base.Shape)
shape = self.spread(obj,obj.Base.Shape)
if obj.Additions or obj.Subtractions:
shape = self.processSubShapes(obj,shape)
obj.Shape = shape
def __getstate__(self):
return self.Type