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:
authorJoshua Leung <aligorith@gmail.com>2008-03-24 14:28:49 +0300
committerJoshua Leung <aligorith@gmail.com>2008-03-24 14:28:49 +0300
commit659db30d5091169a6a47f90182f099d7715fb115 (patch)
treef113276d0833827e3c944d62ef555a8edd76e9a7 /source/blender/src/editaction.c
parent186320f458dec1e8436a67f1ae57346d6f40a82d (diff)
Fix for transforming constraint-channel keys that appeared in a group-channel, but belonged to constraint channels that were collapsed and/or hidden.
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index c97451e1d57..f8017fb3455 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -367,7 +367,7 @@ static void actdata_filter_actionchannel (ListBase *act_data, bActionChannel *ac
}
/* add constraint channels? */
- if (FILTER_CON_ACHAN(achan) || (filter_mode & ACTFILTER_ONLYICU)) {
+ if (FILTER_CON_ACHAN(achan) || (filter_mode & ACTFILTER_IPOKEYS) || (filter_mode & ACTFILTER_ONLYICU)) {
/* loop through constraint channels, checking and adding them */
for (conchan=achan->constraintChannels.first; conchan; conchan=conchan->next) {
/* only work with this channel and its subchannels if it is editable */