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>2010-02-21 14:42:32 +0300
committerJoshua Leung <aligorith@gmail.com>2010-02-21 14:42:32 +0300
commitddc0c68a5c7187f33ec1fe0136e6509afd25cb29 (patch)
treefc3d20132a0559f2bc25b630c184d02545a98de3 /source/blender/editors/transform/transform_generics.c
parent02b2c2f39d85e7b7884bf8f4dbdfcd8777193702 (diff)
Bugfix #21234: Autokey "insert only available" userpref inserts keys for all bones in an armature
-- Bugfix: When autokey is enabled, notifiers to refresh the animation editors *after* transforms finished for objects were missing. While I understand the need to limit these to not doing this during transform, after transform, this lead to lag/inconsistent UI problems. -- * Added 'Damped Track' Option to 'Make Track' Operator * Improved the code of the 'Clear Track' operator to include other types of tracking constraint too
Diffstat (limited to 'source/blender/editors/transform/transform_generics.c')
-rw-r--r--source/blender/editors/transform/transform_generics.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c
index f8f9dda8f1d..27eb48614d2 100644
--- a/source/blender/editors/transform/transform_generics.c
+++ b/source/blender/editors/transform/transform_generics.c
@@ -955,6 +955,7 @@ int initTransInfo (bContext *C, TransInfo *t, wmOperator *op, wmEvent *event)
t->animtimer= CTX_wm_screen(C)->animtimer;
/* turn manipulator off during transform */
+ // FIXME: but don't do this when USING the manipulator...
if (t->flag & T_MODAL) {
t->twtype = v3d->twtype;
v3d->twtype = 0;