From ff5e41cd3e204457cef239397ec362d34a35f9d6 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Fri, 27 Jun 2003 12:58:21 +0000 Subject: [PATCH] - 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... --- source/blender/src/editipo.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); }