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:
authorYevgeny Makarov <jenkm>2021-02-24 22:49:14 +0300
committerHans Goudey <h.goudey@me.com>2021-02-24 22:49:14 +0300
commita50f6bc40b65b72381546d4ca0f3b617798577cf (patch)
treea452da2bdb922c3d2143b2b3a6b46b4a01c8841d /source/blender/makesrna/intern/rna_nodetree.c
parent962b87f06a8e3dfadf86ca93ca2083db7866b98e (diff)
UI: Clean up "Dupli" to "Instance"
Following the naming conventions defined in T56648, where in this instance there were still a few remaining uses of the old term. Differential Revision: https://developer.blender.org/D9817
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 46fdfe4a862..b8a3f0878b1 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -5222,7 +5222,7 @@ static void def_sh_tex_coord(StructRNA *srna)
prop = RNA_def_property(srna, "from_instancer", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "custom1", 1);
RNA_def_property_ui_text(
- prop, "From Instancer", "Use the parent of the dupli object if possible");
+ prop, "From Instancer", "Use the parent of the instance object if possible");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
}
@@ -5554,7 +5554,7 @@ static void def_sh_uvmap(StructRNA *srna)
prop = RNA_def_property(srna, "from_instancer", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "custom1", 1);
RNA_def_property_ui_text(
- prop, "From Instancer", "Use the parent of the dupli object if possible");
+ prop, "From Instancer", "Use the parent of the instance object if possible");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
RNA_def_struct_sdna_from(srna, "NodeShaderUVMap", "storage");