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:
Diffstat (limited to 'source/blender/src/drawaction.c')
-rw-r--r--source/blender/src/drawaction.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/src/drawaction.c b/source/blender/src/drawaction.c
index 9ae34d59226..52d9f59ae88 100644
--- a/source/blender/src/drawaction.c
+++ b/source/blender/src/drawaction.c
@@ -658,9 +658,12 @@ void check_action_context(SpaceAction *saction)
for (achan=saction->action->chanbase.first; achan; achan=achan->next) {
pchan= get_pose_channel(ob->pose, achan->name);
- if(pchan)
- if((pchan->bone->layer & arm->layer)==0)
+ if (pchan) {
+ if ((pchan->bone->layer & arm->layer)==0)
achan->flag |= ACHAN_HIDDEN;
+ else if (pchan->bone->flag & BONE_HIDDEN_P)
+ achan->flag |= ACHAN_HIDDEN;
+ }
}
}
}