RNA: fix the name of the parent inverse matrix in Data API Outliner view.

This commit is contained in:
Alexander Gavrilov 2019-09-28 10:14:46 +03:00
parent a2457dd7bb
commit 775a13dea0
1 changed files with 1 additions and 1 deletions

View File

@ -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 */