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-17 02:51:49 +0300
committerJoshua Leung <aligorith@gmail.com>2010-02-17 02:51:49 +0300
commitf075308d20090901cd34364bb09f8a672a374a3e (patch)
tree5fe85c368f7710ed99ab7015af85e61d516c35ff /source/blender/editors
parentdf4d7b041e8339003da2d3c1ebd0eeaf66d4eb59 (diff)
Fill bones between joints (FKEY) was missing a suitable notifier.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/armature/editarmature.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c
index 8173a8933f2..1db6a4b4112 100644
--- a/source/blender/editors/armature/editarmature.c
+++ b/source/blender/editors/armature/editarmature.c
@@ -3012,6 +3012,9 @@ static int armature_fill_bones_exec (bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
+ /* updates */
+ WM_event_add_notifier(C, NC_OBJECT|ND_POSE, obedit);
+
/* free points */
BLI_freelistN(&points);