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:34:44 +0400
committerTon Roosendaal <ton@blender.org>2003-06-27 16:34:44 +0400
commit57aaef00ee8393c3f9bc03c179485579723704d9 (patch)
tree38d51bb90a7ed585c15d1cea95345d6034355ad9 /source/blender/src/editaction.c
parentdc686139de8740484c55516e225ab515db5734f2 (diff)
- part 1 of investigating how armatures work!
fixed display error; when adding a 'key' in a bone, it didnt update IpoWindow
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index eef5fb3d6b4..01f0ff4ff2b 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -772,7 +772,8 @@ static void set_action_key_time (bAction *act, bPoseChannel *chan, int adrcode,
}
/* Ensure the channel appears selected in the action window */
- achan->flag |= ACHAN_SELECTED;
+ /* ton: added flag hilighted, for display in ipowin. dunno what the difference is between select/hilite */
+ achan->flag |= ACHAN_SELECTED|ACHAN_HILIGHTED;
/* Ensure this action channel has a valid Ipo */
if (!achan->ipo){