From 77f0f3c54e9b641139da43a6aa7cf15af97fcc08 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 27 May 2015 10:34:08 +1000 Subject: Fix parent tips staying selected after separate --- source/blender/editors/armature/armature_relations.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/editors/armature') 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 */ -- cgit v1.2.3