[Bf-blender-cvs] [de535fdd52a] master: UI: Change name Airbrush back to Accumulate

William Reynish noreply at git.blender.org
Wed Mar 20 14:14:08 CET 2019


Commit: de535fdd52afd89208d60ec8206a1a20e6b316fd
Author: William Reynish
Date:   Wed Mar 20 14:14:06 2019 +0100
Branches: master
https://developer.blender.org/rBde535fdd52afd89208d60ec8206a1a20e6b316fd

UI: Change name Airbrush back to Accumulate

'Airbrush' didn't make sense for Sculpt mode.

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

M	source/blender/makesrna/intern/rna_brush.c

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

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);



More information about the Bf-blender-cvs mailing list