From 1ef33be2d4c98b9a2b43211c5306928f9809b6e2 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Mon, 7 Jun 2021 16:47:13 -0500 Subject: UI: Remove property descriptions exactly the same as names These two descriptions are exactly the same as the property names, which only wastes people's time when reading tooltips --- source/blender/makesrna/intern/rna_curve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna') diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c index e5e7564f578..dd7d50a80ba 100644 --- a/source/blender/makesrna/intern/rna_curve.c +++ b/source/blender/makesrna/intern/rna_curve.c @@ -1837,7 +1837,7 @@ static void rna_def_curve(BlenderRNA *brna) prop = RNA_def_property(srna, "texspace_location", PROP_FLOAT, PROP_TRANSLATION); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Texture Space Location", "Texture space location"); + RNA_def_property_ui_text(prop, "Texture Space Location", ""); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, RNA_TRANSLATION_PREC_DEFAULT); RNA_def_property_editable_func(prop, "rna_Curve_texspace_editable"); RNA_def_property_float_funcs( @@ -1847,7 +1847,7 @@ static void rna_def_curve(BlenderRNA *brna) prop = RNA_def_property(srna, "texspace_size", PROP_FLOAT, PROP_XYZ); RNA_def_property_array(prop, 3); RNA_def_property_flag(prop, PROP_PROPORTIONAL); - RNA_def_property_ui_text(prop, "Texture Space Size", "Texture space size"); + RNA_def_property_ui_text(prop, "Texture Space Size", ""); RNA_def_property_editable_func(prop, "rna_Curve_texspace_editable"); RNA_def_property_float_funcs( prop, "rna_Curve_texspace_size_get", "rna_Curve_texspace_size_set", NULL); -- cgit v1.2.3