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>2016-04-25 21:16:34 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-04-25 21:16:34 +0300
commit45d9c9de35007e7143ae9e3d483dbb9d84d83614 (patch)
treeef4fd2d1bae279aefdf91f36c38aac902c862068 /source/blender/editors/curve
parent6a7378f50f239b8ed226978e0fb0a8043c87cbc2 (diff)
UI messages fixes - no final point ;)
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editcurve_paint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/curve/editcurve_paint.c b/source/blender/editors/curve/editcurve_paint.c
index bc54d27b171..d24c33984ee 100644
--- a/source/blender/editors/curve/editcurve_paint.c
+++ b/source/blender/editors/curve/editcurve_paint.c
@@ -670,7 +670,7 @@ static bool curve_draw_init(bContext *C, wmOperator *op, bool is_invoke)
view3d_set_viewcontext(C, &cdd->vc);
if (ELEM(NULL, cdd->vc.ar, cdd->vc.rv3d, cdd->vc.v3d, cdd->vc.win, cdd->vc.scene)) {
MEM_freeN(cdd);
- BKE_report(op->reports, RPT_ERROR, "Unable to access 3D viewport.");
+ BKE_report(op->reports, RPT_ERROR, "Unable to access 3D viewport");
return false;
}
}
@@ -1100,7 +1100,7 @@ static int curve_draw_invoke(bContext *C, wmOperator *op, const wmEvent *event)
cdd->project.use_depth = true;
}
else {
- BKE_report(op->reports, RPT_WARNING, "Unable to access depth buffer, using view plane.");
+ BKE_report(op->reports, RPT_WARNING, "Unable to access depth buffer, using view plane");
cdd->project.use_depth = false;
}
}