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:
authorDalai Felinto <dfelinto@gmail.com>2018-05-16 15:59:16 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-05-16 16:02:33 +0300
commitb0cfd7a9b8529ea5882e1d6fbbf8571b62d64037 (patch)
tree39378b03c012209e4bd1e61ef73a5359d5ddc6e3 /source/blender/editors/sculpt_paint
parent2e4c1346bd6829c40bc1c9eeb0c289fc74f6b007 (diff)
Fix T55082: Add Paint Slots for texture painting not working
We changed how this work since the BI removal. But since this operator was moved to the topbar its poll function was returning false.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_proj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c
index fd8fe84cffc..a1435d5916a 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -5761,7 +5761,7 @@ void PAINT_OT_add_texture_paint_slot(wmOperatorType *ot)
/* api callbacks */
ot->invoke = texture_paint_add_texture_paint_slot_invoke;
ot->exec = texture_paint_add_texture_paint_slot_exec;
- ot->poll = ED_operator_region_view3d_active;
+ ot->poll = ED_operator_object_active;
/* flags */
ot->flag = OPTYPE_UNDO;