[Bf-blender-cvs] [45d9c9d] master: UI messages fixes - no final point ; )

Bastien Montagne noreply at git.blender.org
Mon Apr 25 20:16:56 CEST 2016


Commit: 45d9c9de35007e7143ae9e3d483dbb9d84d83614
Author: Bastien Montagne
Date:   Mon Apr 25 20:16:34 2016 +0200
Branches: master
https://developer.blender.org/rB45d9c9de35007e7143ae9e3d483dbb9d84d83614

UI messages fixes - no final point ;)

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

M	source/blender/editors/curve/editcurve_paint.c

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

diff --git a/source/blender/editors/curve/editcurve_paint.c b/source/blender/editors/curve/editcurve_paint.c
index bc54d27..d24c339 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;
 				}
 			}




More information about the Bf-blender-cvs mailing list