From de535fdd52afd89208d60ec8206a1a20e6b316fd Mon Sep 17 00:00:00 2001 From: William Reynish Date: Wed, 20 Mar 2019 14:14:06 +0100 Subject: [PATCH] UI: Change name Airbrush back to Accumulate 'Airbrush' didn't make sense for Sculpt mode. --- source/blender/makesrna/intern/rna_brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c index 775a76976a0..209a2c70400 100644 --- a/source/blender/makesrna/intern/rna_brush.c +++ b/source/blender/makesrna/intern/rna_brush.c @@ -1845,7 +1845,7 @@ static void rna_def_brush(BlenderRNA *brna) prop = RNA_def_property(srna, "use_accumulate", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", BRUSH_ACCUMULATE); - RNA_def_property_ui_text(prop, "Airbrush", "Accumulate stroke daubs on top of each other"); + RNA_def_property_ui_text(prop, "Accumulate", "Accumulate stroke daubs on top of each other"); RNA_def_property_update(prop, 0, "rna_Brush_update"); prop = RNA_def_property(srna, "use_space_attenuation", PROP_BOOLEAN, PROP_NONE);