From b77fc70d138603bc827fc9d564519a632f3410a3 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 25 Jun 2020 16:38:50 +0200 Subject: Cleanup: Don't use "Use" in boolean names --- source/blender/makesrna/intern/rna_userdef.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna/intern/rna_userdef.c') 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) -- cgit v1.2.3