Commit: f3848e8e1e7ca74d43d54bbaf4cfcbb7c7ad132a Author: Campbell Barton Date: Fri Jul 12 22:23:39 2019 +1000 Branches: master https://developer.blender.org/rBf3848e8e1e7ca74d43d54bbaf4cfcbb7c7ad132a
Fix T66747: Active bone not showing in edit-mode =================================================================== M source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc =================================================================== diff --git a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc index 453e9e06a6a..11fbec62d60 100644 --- a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc +++ b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc @@ -578,6 +578,7 @@ void update_armature_edit_mode_pointers(const Depsgraph * /*depsgraph*/, const bArmature *armature_orig = (const bArmature *)id_orig; bArmature *armature_cow = (bArmature *)id_cow; armature_cow->edbo = armature_orig->edbo; + armature_cow->act_edbone = armature_orig->act_edbone; } void update_curve_edit_mode_pointers(const Depsgraph * /*depsgraph*/, _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
