Fix bug where adding a representation to a type instance didn't share meshes

This commit is contained in:
Dion Moult
2021-11-06 18:51:00 +11:00
parent 117f663f48
commit 4149292a13
5 changed files with 27 additions and 6 deletions
+1 -2
View File
@@ -63,8 +63,7 @@ class Geometry(blenderbim.core.tool.Geometry):
@classmethod
def duplicate_object_data(cls, obj):
obj.data = obj.data.copy()
return obj.data
return obj.data.copy()
@classmethod
def get_cartesian_point_coordinate_offset(cls, obj):