From ed07bccf7c1fe7cbb54902e0269f8fc52773cf85 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 30 Nov 2018 11:57:14 +0100 Subject: Fix missing "need eval data" for texpaint mode toggle op. Note that am not sure that is actually needed, since switching to that mode does not actually use any eval data, it's only needed during init of first stroke... But in doubt, that won't hurt to have it here anyway. --- source/blender/editors/sculpt_paint/paint_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/sculpt_paint/paint_image.c') diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index f9b2e0bbb01..86f7486d57d 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -1166,7 +1166,7 @@ void PAINT_OT_texture_paint_toggle(wmOperatorType *ot) ot->poll = texture_paint_toggle_poll; /* flags */ - ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO | OPTYPE_USE_EVAL_DATA; } -- cgit v1.2.3