Details
Details
- Reviewers
Brecht Van Lommel (brecht) Alexander Gavrilov (angavrilov) - Maniphest Tasks
- T63841: X-axis mirror do not scale corresponding bone with single bbone scale
- Commits
- rBS5d9d32fd1fa3: Fix T63841: armature with X-axis mirror does not mirror bbone scale
rB5d9d32fd1fa3: Fix T63841: armature with X-axis mirror does not mirror bbone scale
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
| source/blender/editors/transform/transform_conversions.c | ||
|---|---|---|
| 1337 | This is going to give a compiler warning about arm being possibly used uninitialized. Can be solved like this: else {
BLI_assert(tc->poseobj != NULL);
arm = tc->poseobj->data;
} | |