From bcff8037122d439d4d268a03ff121b56c2dd7b47 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 14 Nov 2019 19:48:08 +1100 Subject: Paint: disable undo when changing the brush or it's size Causes undo push in sculpt mode, see: T71434 --- source/blender/editors/sculpt_paint/paint_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') 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. */ -- cgit v1.2.3