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>2019-07-12 15:23:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-12 15:24:37 +0300
commitf3848e8e1e7ca74d43d54bbaf4cfcbb7c7ad132a (patch)
treee7c1cd1a795d259c15f56fd94cd6f1fc23a929b9 /source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc
parent325501247d88647fd2457f9fc02209aadc6a52f1 (diff)
Fix T66747: Active bone not showing in edit-mode
Diffstat (limited to 'source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc1
1 files changed, 1 insertions, 0 deletions
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*/,