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:
authorCampbell Barton <ideasman42@gmail.com>2014-04-17 07:23:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-17 07:23:53 +0400
commitba61992cc3a98bdcc9cebd59ea96cfad5a63e08d (patch)
treeeaf137b5a8fd1f96449a5268062f7598ce121746
parent64f3774d6272d3071ed4d0bf90be2a6ca5a2e854 (diff)
Fix T39767: Parent in Mask mode crashes
-rw-r--r--source/blender/editors/mask/mask_relationships.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mask/mask_relationships.c b/source/blender/editors/mask/mask_relationships.c
index 9cc1702addb..ec32190fb95 100644
--- a/source/blender/editors/mask/mask_relationships.c
+++ b/source/blender/editors/mask/mask_relationships.c
@@ -195,7 +195,7 @@ void MASK_OT_parent_set(wmOperatorType *ot)
//ot->invoke = mask_parent_set_invoke;
ot->exec = mask_parent_set_exec;
- ot->poll = ED_maskedit_mask_poll;
+ ot->poll = ED_space_clip_maskedit_mask_poll;
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;