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:
authorDalai Felinto <dalai@blender.org>2020-06-25 17:38:50 +0300
committerDalai Felinto <dalai@blender.org>2020-06-25 17:38:50 +0300
commitb77fc70d138603bc827fc9d564519a632f3410a3 (patch)
treefc2fac19a6f491e048166be0d866c099918b10b2 /source/blender/makesrna/intern/rna_userdef.c
parentdd9c0dbf5ed5c874d280c0e76ea9b41e5cd81719 (diff)
Cleanup: Don't use "Use" in boolean names
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 9c07280e70f..6a6d9f3054f 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -6074,11 +6074,11 @@ static void rna_def_userdef_experimental(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_new_particle_system", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "use_new_particle_system", 1);
RNA_def_property_ui_text(
- prop, "Use New Particle System", "Enable the new particle system in the ui");
+ prop, "New Particle System", "Enable the new particle system in the ui");
prop = RNA_def_property(srna, "use_new_hair_type", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "use_new_hair_type", 1);
- RNA_def_property_ui_text(prop, "Use New Hair Type", "Enable the new hair type in the ui");
+ RNA_def_property_ui_text(prop, "New Hair Type", "Enable the new hair type in the ui");
}
static void rna_def_userdef_addon_collection(BlenderRNA *brna, PropertyRNA *cprop)