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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-05 17:58:51 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-06 04:58:42 +0400
commit70e98a21e0db11c14e9f32f1428d8f0c2abf377f (patch)
treee08a9bf3d70bfc7f2f4c4ae756ee5f5730ef5934 /source/blender/editors/render/render_shading.c
parent02808f2774976432cf0816bd9919dab2749670f5 (diff)
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.
Diffstat (limited to 'source/blender/editors/render/render_shading.c')
-rw-r--r--source/blender/editors/render/render_shading.c2
1 files changed, 1 insertions, 1 deletions
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) {