[Bf-blender-cvs] [f8f3aca1d44] master: Fix T66264: UI: Repeated word typo

Aaron Carlisle noreply at git.blender.org
Sun Jun 30 17:26:46 CEST 2019


Commit: f8f3aca1d44a8119d37e901f0f900bf75618eeaa
Author: Aaron Carlisle
Date:   Sun Jun 30 11:25:49 2019 -0400
Branches: master
https://developer.blender.org/rBf8f3aca1d44a8119d37e901f0f900bf75618eeaa

Fix T66264: UI: Repeated word typo

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

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

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

diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c
index 99b2c423b44..aef35684ff7 100644
--- a/source/blender/makesrna/intern/rna_armature.c
+++ b/source/blender/makesrna/intern/rna_armature.c
@@ -1355,7 +1355,7 @@ static void rna_def_armature(BlenderRNA *brna)
   prop = RNA_def_property(srna, "display_type", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_sdna(prop, NULL, "drawtype");
   RNA_def_property_enum_items(prop, prop_drawtype_items);
-  RNA_def_property_ui_text(prop, "Display Type Type", "");
+  RNA_def_property_ui_text(prop, "Display Type", "");
   RNA_def_property_update(prop, 0, "rna_Armature_redraw_data");
   RNA_def_property_flag(prop, PROP_LIB_EXCEPTION);



More information about the Bf-blender-cvs mailing list