From 76eac1ae70001f5b2b0fe1d064f260db8509b246 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 6 Feb 2016 17:57:50 +1300 Subject: Motion Paths: Use custom poll functions for "Update" operator --- source/blender/editors/armature/pose_edit.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/armature') diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c index 9e8028b6cd8..ad0532bec38 100644 --- a/source/blender/editors/armature/pose_edit.c +++ b/source/blender/editors/armature/pose_edit.c @@ -262,6 +262,16 @@ void POSE_OT_paths_calculate(wmOperatorType *ot) /* --------- */ +static int pose_update_paths_poll(bContext *C) +{ + if (ED_operator_posemode_exclusive(C)) { + bPoseChannel *pchan = CTX_data_active_pose_bone(C); + return (pchan && pchan->mpath); + } + + return false; +} + static int pose_update_paths_exec(bContext *C, wmOperator *UNUSED(op)) { Object *ob = BKE_object_pose_armature_get(CTX_data_active_object(C)); @@ -289,7 +299,7 @@ void POSE_OT_paths_update(wmOperatorType *ot) /* api callbakcs */ ot->exec = pose_update_paths_exec; - ot->poll = ED_operator_posemode_exclusive; /* TODO: this should probably check for active bone and/or existing paths */ + ot->poll = pose_update_paths_poll; /* flags */ ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; -- cgit v1.2.3