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:
authorTon Roosendaal <ton@blender.org>2003-06-27 16:58:21 +0400
committerTon Roosendaal <ton@blender.org>2003-06-27 16:58:21 +0400
commitff5e41cd3e204457cef239397ec362d34a35f9d6 (patch)
tree1eeec840a7b8797dbde8e4a7b7ad335b4163e498 /source/blender/src/editipo.c
parent57aaef00ee8393c3f9bc03c179485579723704d9 (diff)
- when inserting first key for Bone in Armature, the IpoWindow now gets
a signal to change to 'show Action Ipos' Makes it all a tad more clear...
Diffstat (limited to 'source/blender/src/editipo.c')
-rw-r--r--source/blender/src/editipo.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/src/editipo.c b/source/blender/src/editipo.c
index 648e27c8f50..bc7f7e9029d 100644
--- a/source/blender/src/editipo.c
+++ b/source/blender/src/editipo.c
@@ -3874,7 +3874,11 @@ void common_insertkey()
collect_pose_garbage(ob);
if (!act){
- act=G.obpose->action=add_empty_action();
+ act= G.obpose->action=add_empty_action();
+ /* this sets the non-pinned open ipowindow(s) to show the action curve */
+ ob->ipowin= ID_AC;
+ allqueue(REDRAWIPO, ob->ipowin);
+
allqueue(REDRAWACTION, 0);
allqueue(REDRAWNLA, 0);
}