Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-05-27 03:34:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-27 03:35:14 +0300
commit77f0f3c54e9b641139da43a6aa7cf15af97fcc08 (patch)
tree362def934cdc796ed4927948df87eff1462a88e9 /source/blender/editors/armature/armature_relations.c
parentc3810c596e91c2dd3729bc827a54796ebd10d9c9 (diff)
Fix parent tips staying selected after separate
Diffstat (limited to 'source/blender/editors/armature/armature_relations.c')
-rw-r--r--source/blender/editors/armature/armature_relations.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/armature/armature_relations.c b/source/blender/editors/armature/armature_relations.c
index 058a9a5fd03..8cda6f6db77 100644
--- a/source/blender/editors/armature/armature_relations.c
+++ b/source/blender/editors/armature/armature_relations.c
@@ -641,6 +641,9 @@ static int separate_armature_exec(bContext *C, wmOperator *op)
ED_armature_to_edit(obedit->data);
+ /* parents tips remain selected when connected children are removed. */
+ ED_armature_deselect_all(obedit);
+
BKE_report(op->reports, RPT_INFO, "Separated bones");
/* note, notifier might evolve */