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>2009-01-28 03:50:56 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-28 03:50:56 +0300
commit623659f72f50a7ca78e4a72317eb2df0d3c22057 (patch)
treeebaae6b46747904becd15a2f8b854bc746b2d9c6 /source/blender/editors/animation/anim_channels.c
parent764168d62a22659ac9947835a3308f7bc66fc1d5 (diff)
Animato - Driver + ShapeKey bugfixes
* ShapeKey conversions should now go to the correct places * Added fix for drivers to prevent crashes when no driver object is provided (Franky from BBB seems to have one such driver for some reason). * Temporarily disabled a check when evaluating drivers for whether the driver is tagged for evaluation. Drivers still need to be correctly tagged AND ordered by the Depsgraph to work correctly.
Diffstat (limited to 'source/blender/editors/animation/anim_channels.c')
-rw-r--r--source/blender/editors/animation/anim_channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_channels.c b/source/blender/editors/animation/anim_channels.c
index 3ebb6bb5a11..b7310e61934 100644
--- a/source/blender/editors/animation/anim_channels.c
+++ b/source/blender/editors/animation/anim_channels.c
@@ -1025,7 +1025,7 @@ static void mouse_anim_channels (bAnimContext *ac, float x, int channel_index, s
case ANIMTYPE_FILLACTD:
{
bAction *act= (bAction *)ale->data;
- act->flag ^= ACT_EXPANDED;
+ act->flag ^= ACT_COLLAPSED;
}
break;
case ANIMTYPE_FILLMATD: