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:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-09-28 10:14:46 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-09-28 10:14:46 +0300
commit775a13dea0fa85606707c2d309b6de7c7f844746 (patch)
treef1faccfdd5b0333578c94414461a961b882a990b /source/blender/makesrna/intern/rna_object.c
parenta2457dd7bba136dcfd4065f770b75ec5ce28004b (diff)
RNA: fix the name of the parent inverse matrix in Data API Outliner view.
Diffstat (limited to 'source/blender/makesrna/intern/rna_object.c')
-rw-r--r--source/blender/makesrna/intern/rna_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 7b80cf5c995..75594d1b295 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2735,7 +2735,7 @@ static void rna_def_object(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "parentinv");
RNA_def_property_multi_array(prop, 2, rna_matrix_dimsize_4x4);
RNA_def_property_ui_text(
- prop, "Matrix", "Inverse of object's parent matrix at time of parenting");
+ prop, "Parent Inverse Matrix", "Inverse of object's parent matrix at time of parenting");
RNA_def_property_update(prop, NC_OBJECT | ND_TRANSFORM, "rna_Object_internal_update");
/* modifiers */