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
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2008-02-05 06:10:46 +0300
committerJoshua Leung <aligorith@gmail.com>2008-02-05 06:10:46 +0300
commit790d4927bdbdacbdd89ffa28ebd99a8678dfac7e (patch)
tree4c103a1fbd56adacaecf1582ec991649ef6eef2f /source
parent40527637c5357ed51549cdbc46b2ba5558a19405 (diff)
Bugfix:
Pasting poses now refreshes dependencies correctly after pasting
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/poseobject.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/poseobject.c b/source/blender/src/poseobject.c
index 5692f2d54bd..fab2dc9d20c 100644
--- a/source/blender/src/poseobject.c
+++ b/source/blender/src/poseobject.c
@@ -869,11 +869,11 @@ void paste_posebuf (int flip)
/* Update event for pose and deformation children */
DAG_object_flush_update(G.scene, ob, OB_RECALC_DATA);
- if ((IS_AUTOKEY_MODE(NORMAL))) {
+ if (IS_AUTOKEY_ON) {
remake_action_ipos(ob->action);
- allqueue (REDRAWIPO, 0);
- allqueue (REDRAWVIEW3D, 0);
- allqueue (REDRAWACTION, 0);
+ allqueue(REDRAWIPO, 0);
+ allqueue(REDRAWVIEW3D, 0);
+ allqueue(REDRAWACTION, 0);
allqueue(REDRAWNLA, 0);
}
else {