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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2019-06-30 18:25:49 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2019-06-30 18:26:32 +0300
commitf8f3aca1d44a8119d37e901f0f900bf75618eeaa (patch)
tree31f2630c46191e81209522bcb43872dd629a56a3 /source/blender/makesrna/intern/rna_armature.c
parente40f3f5c48eae94d463ab4ba5ec7e462c039dfea (diff)
Fix T66264: UI: Repeated word typo
Diffstat (limited to 'source/blender/makesrna/intern/rna_armature.c')
-rw-r--r--source/blender/makesrna/intern/rna_armature.c2
1 files changed, 1 insertions, 1 deletions
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);