Multi-Objects: UV_OT_smart_project

This commit is contained in:
Dalai Felinto 2018-09-05 15:23:39 -03:00
parent 92f70c45ea
commit 67682f567b
Notes: blender-bot 2023-02-14 07:25:46 +01:00
Referenced by issue #54645, Multi-Object-Mode: EditMesh UV Tools
1 changed files with 3 additions and 4 deletions

View File

@ -756,11 +756,10 @@ def main(context,
USER_FILL_HOLES_QUALITY = 50 # Only for hole filling.
USER_VIEW_INIT = 0 # Only for hole filling.
obList = [ob for ob in context.selected_editable_objects if ob and ob.type == 'MESH']
is_editmode = (context.active_object.mode == 'EDIT')
if is_editmode:
obList = [ob for ob in [context.active_object] if ob and ob.type == 'MESH']
else:
obList = [ob for ob in context.selected_editable_objects if ob and ob.type == 'MESH']
if not is_editmode:
USER_ONLY_SELECTED_FACES = False
if not obList: