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:
authorAntony Riakiotakis <kalast@gmail.com>2014-05-16 00:06:29 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-05-16 00:06:29 +0400
commit7773f8f5043dc19904b01414bfce3cdfec1329e0 (patch)
treeaa35a7fcdbb717deab624b34e2ec0390f79d5a92 /source/blender/editors
parent56aa4eadcc3f439e79c71753299f462a83015533 (diff)
Use warning instead of info for previous commit
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index ee4dfcf7c4e..2193a5d018d 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);