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 <montagne29@wanadoo.fr>2013-11-26 01:23:36 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-11-26 01:51:46 +0400
commit07bde9e797c73a0cdbeef315755874ff711a6414 (patch)
tree2cf97e1797f903aab5b19e55c931b3ec413b06ae /source/blender/modifiers/intern/MOD_laplaciandeform.c
parentcc55913798aecbdeb3fc6e49c16a26ccbddebd9b (diff)
Usual ui messages fixes...
Diffstat (limited to 'source/blender/modifiers/intern/MOD_laplaciandeform.c')
-rw-r--r--source/blender/modifiers/intern/MOD_laplaciandeform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_laplaciandeform.c b/source/blender/modifiers/intern/MOD_laplaciandeform.c
index a8a6f1a1cb9..ec838c5fc41 100644
--- a/source/blender/modifiers/intern/MOD_laplaciandeform.c
+++ b/source/blender/modifiers/intern/MOD_laplaciandeform.c
@@ -734,7 +734,7 @@ static void LaplacianDeformModifier_do(
modifier_setError(&lmd->modifier, "Edges changed from %d to %d", sys->total_edges, dm->getNumEdges(dm));
}
else if (sysdif == LAPDEFORM_SYSTEM_CHANGE_NOT_VALID_GROUP) {
- modifier_setError(&lmd->modifier, "Vertex group %s is not valid", sys->anchor_grp_name);
+ modifier_setError(&lmd->modifier, "Vertex group '%s' is not valid", sys->anchor_grp_name);
}
}
}
@@ -765,7 +765,7 @@ static void LaplacianDeformModifier_do(
}
}
if (sys->is_matrix_computed && !sys->has_solution) {
- modifier_setError(&lmd->modifier, "The system did not find a solution.");
+ modifier_setError(&lmd->modifier, "The system did not find a solution");
}
}