[Bf-blender-cvs] [fd63be06109] master: UI: Use 'Display' instead of 'Draw' for show_particles

William Reynish noreply at git.blender.org
Mon Mar 18 21:33:03 CET 2019


Commit: fd63be0610990ff9e388dca6513d87b986643bed
Author: William Reynish
Date:   Mon Mar 18 21:33:01 2019 +0100
Branches: master
https://developer.blender.org/rBfd63be0610990ff9e388dca6513d87b986643bed

UI: Use 'Display' instead of 'Draw' for show_particles

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

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

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

diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index 395daa76db3..921c6753575 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -1082,7 +1082,7 @@ static void rna_def_particle_edit(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "show_particles", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_flag(prop, PROP_CONTEXT_UPDATE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PE_DRAW_PART);
-	RNA_def_property_ui_text(prop, "Draw Particles", "Draw actual particles");
+	RNA_def_property_ui_text(prop, "Display Particles", "Display actual particles");
 	RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_ParticleEdit_redo");
 
 	prop = RNA_def_property(srna, "use_default_interpolate", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list