Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-03-20 16:14:06 +0300
committerWilliam Reynish <billrey@me.com>2019-03-20 16:14:06 +0300
commitde535fdd52afd89208d60ec8206a1a20e6b316fd (patch)
tree0330add98eac27e161a93e3e9719320d1eaf8a9c /source/blender
parente4320e2ce0bbb05453b35b87ba97ddcefb182675 (diff)
UI: Change name Airbrush back to Accumulate
'Airbrush' didn't make sense for Sculpt mode.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
1 files changed, 1 insertions, 1 deletions
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);