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:
authorBastien Montagne <b.mont29@gmail.com>2020-02-17 15:00:01 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-17 15:01:07 +0300
commitd119e163d0a867fe0263d751231b838c57b95b31 (patch)
treecc271d14cd6b0f12d56498f0a906b8d32dc37e24 /source/blender/makesrna/intern/rna_layer.c
parent2d1b05a15fa2d53894efd5198784ddde6bfa63a3 (diff)
Fix many typos and other issues in UI messages.
Diffstat (limited to 'source/blender/makesrna/intern/rna_layer.c')
-rw-r--r--source/blender/makesrna/intern/rna_layer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_layer.c b/source/blender/makesrna/intern/rna_layer.c
index da882959ef2..721fc8dddff 100644
--- a/source/blender/makesrna/intern/rna_layer.c
+++ b/source/blender/makesrna/intern/rna_layer.c
@@ -434,7 +434,7 @@ static void rna_def_layer_collection(BlenderRNA *brna)
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop,
"Visible",
- "Whether this collection is visible for the viewlayer, take into "
+ "Whether this collection is visible for the view layer, take into "
"account the collection parent");
func = RNA_def_function(srna, "has_objects", "rna_LayerCollection_has_objects");
@@ -445,7 +445,7 @@ static void rna_def_layer_collection(BlenderRNA *brna)
srna, "has_selected_objects", "rna_LayerCollection_has_selected_objects");
RNA_def_function_ui_description(func, "");
prop = RNA_def_pointer(
- func, "view_layer", "ViewLayer", "", "ViewLayer the layer collection belongs to");
+ func, "view_layer", "ViewLayer", "", "View layer the layer collection belongs to");
RNA_def_parameter_flags(prop, 0, PARM_REQUIRED);
RNA_def_function_return(func, RNA_def_boolean(func, "result", 0, "", ""));
}