From 70e98a21e0db11c14e9f32f1428d8f0c2abf377f Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Thu, 5 Jun 2014 22:58:51 +0900 Subject: Freestyle: Fix for operator error messages with no active line set and associated line style. This commit amends a de-duplication of error messages in the commit rB6067fa682b0c. --- source/blender/editors/render/render_shading.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/render/render_shading.c') diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c index b91bc793f85..f0d418b9980 100644 --- a/source/blender/editors/render/render_shading.c +++ b/source/blender/editors/render/render_shading.c @@ -598,7 +598,7 @@ void SCENE_OT_render_layer_remove(wmOperatorType *ot) static bool freestyle_linestyle_check_report(FreestyleLineSet *lineset, ReportList *reports) { if (!lineset) { - BKE_report(reports, RPT_ERROR, "No active lineset and associated line style to add the modifier to"); + BKE_report(reports, RPT_ERROR, "No active lineset and associated line style to manipulate the modifier"); return false; } if (!lineset->linestyle) { -- cgit v1.2.3