[Bf-blender-cvs] [ed07bccf7c1] blender2.8: Fix missing "need eval data" for texpaint mode toggle op.

Bastien Montagne noreply at git.blender.org
Fri Nov 30 11:59:27 CET 2018


Commit: ed07bccf7c1fe7cbb54902e0269f8fc52773cf85
Author: Bastien Montagne
Date:   Fri Nov 30 11:57:14 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBed07bccf7c1fe7cbb54902e0269f8fc52773cf85

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.

===================================================================

M	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;
 }



More information about the Bf-blender-cvs mailing list