[Bf-blender-cvs] [d276ef7062b] blender2.8: Fix typo in error message.

Bastien Montagne noreply at git.blender.org
Mon Apr 23 14:27:43 CEST 2018


Commit: d276ef7062ba62f18a88c026ffc78603f901f0e2
Author: Bastien Montagne
Date:   Mon Apr 23 14:25:42 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBd276ef7062ba62f18a88c026ffc78603f901f0e2

Fix typo in error message.

===================================================================

M	source/blender/makesrna/intern/rna_object_api.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index 3b934b10d64..7b04bf80af6 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -97,7 +97,7 @@ static void rna_Object_select_set(Object *ob, bContext *C, ReportList *reports,
 	Base *base = BKE_view_layer_base_find(view_layer, ob);
 
 	if (!base) {
-		BKE_reportf(reports, RPT_ERROR, "Object '%s' not in Render Layer '%s'!", ob->id.name + 2, view_layer->name);
+		BKE_reportf(reports, RPT_ERROR, "Object '%s' not in View Layer '%s'!", ob->id.name + 2, view_layer->name);
 		return;
 	}



More information about the Bf-blender-cvs mailing list