bugfix [#22843] Cannot export to folder with ".blend" on the end.

This commit is contained in:
2010-07-14 11:58:19 +00:00
parent fef943873c
commit 80355fd456
8 changed files with 14 additions and 13 deletions

View File

@@ -131,11 +131,11 @@ class SelectHierarchy(bpy.types.Operator):
if parent:
parents.append(parent)
if obj_act == obj:
context.scene.objects.active = parent
parent.selected = True
if obj_act == obj:
context.scene.objects.active = parent
parent.selected = True
if parents:
return {'CANCELLED'}