[Bf-blender-cvs] [bcff8037122] blender-v2.81-release: Paint: disable undo when changing the brush or it's size

Campbell Barton noreply at git.blender.org
Thu Nov 14 09:51:34 CET 2019


Commit: bcff8037122d439d4d268a03ff121b56c2dd7b47
Author: Campbell Barton
Date:   Thu Nov 14 19:48:08 2019 +1100
Branches: blender-v2.81-release
https://developer.blender.org/rBbcff8037122d439d4d268a03ff121b56c2dd7b47

Paint: disable undo when changing the brush or it's size

Causes undo push in sculpt mode, see: T71434

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

M	source/blender/editors/sculpt_paint/paint_ops.c

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

diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index 396f4c6976b..ef907d96075 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -184,7 +184,7 @@ static void BRUSH_OT_scale_size(wmOperatorType *ot)
   ot->exec = brush_scale_size_exec;
 
   /* flags */
-  ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+  ot->flag = 0;
 
   RNA_def_float(ot->srna, "scalar", 1, 0, 2, "Scalar", "Factor to scale brush size by", 0, 2);
 }
@@ -505,7 +505,7 @@ static void PAINT_OT_brush_select(wmOperatorType *ot)
   ot->exec = brush_select_exec;
 
   /* flags */
-  ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+  ot->flag = 0;
 
   /* props */
   /* All properties are hidden, so as not to show the redo panel. */



More information about the Bf-blender-cvs mailing list