[Bf-blender-cvs] [f3848e8e1e7] master: Fix T66747: Active bone not showing in edit-mode

Campbell Barton noreply at git.blender.org
Fri Jul 12 14:28:07 CEST 2019


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*/,



More information about the Bf-blender-cvs mailing list