[Bf-blender-cvs] [7773f8f] master: Use warning instead of info for previous commit

Antony Riakiotakis noreply at git.blender.org
Thu May 15 22:06:38 CEST 2014


Commit: 7773f8f5043dc19904b01414bfce3cdfec1329e0
Author: Antony Riakiotakis
Date:   Thu May 15 23:06:29 2014 +0300
https://developer.blender.org/rB7773f8f5043dc19904b01414bfce3cdfec1329e0

Use warning instead of info for previous commit

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

M	source/blender/editors/sculpt_paint/sculpt.c

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

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index ee4dfcf..2193a5d 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -5043,10 +5043,10 @@ static int sculpt_mode_toggle_exec(bContext *C, wmOperator *op)
 		}
 
 		if (!(fabsf(ob->size[0] - ob->size[1]) < 1e-4f && fabsf(ob->size[1] - ob->size[2]) < 1e-4f))
-			BKE_report(op->reports, RPT_INFO,
+			BKE_report(op->reports, RPT_WARNING,
 					   "Object has non-uniform scale, sculpting may be unpredictable");
 		else if (is_negative_m4(ob->obmat))
-			BKE_report(op->reports, RPT_INFO,
+			BKE_report(op->reports, RPT_WARNING,
 					   "Object has negative scale, sculpting may be unpredictable");
 
 		BKE_paint_init(&ts->sculpt->paint, PAINT_CURSOR_SCULPT);




More information about the Bf-blender-cvs mailing list