Bool Tool: Auto Booleans now handle boolean operations with multi-user objects

This commit is contained in:
Mikhail Rachinskiy 2017-06-26 15:26:28 +04:00
parent 664ecb162c
commit 7bc990e29c
Notes: blender-bot 2023-02-14 19:37:42 +01:00
Referenced by issue #51881, Bool Tool broken with duplicates of objects
1 changed files with 1 additions and 0 deletions

View File

@ -605,6 +605,7 @@ class AutoBoolean:
for ob in bpy.context.selected_objects:
if ob.type != 'MESH':
ob.select = False
bpy.ops.object.make_single_user(object=True, obdata=True)
bpy.ops.object.convert(target='MESH')
def mesh_selection(self, ob, select_action):