Sculpt-dev: Change the negative scale warning from RPT_WARN

to RPT_ERROR.
This commit is contained in:
Joseph Eagar 2022-03-14 10:47:11 -07:00
parent 194ec7460c
commit 389724c1ac
1 changed files with 1 additions and 1 deletions

View File

@ -8571,7 +8571,7 @@ void ED_object_sculptmode_enter_ex(Main *bmain,
reports, RPT_WARNING, "Object has non-uniform scale, sculpting may be unpredictable");
}
else if (is_negative_m4(ob->obmat)) {
BKE_report(reports, RPT_WARNING, "Object has negative scale, sculpting may be unpredictable");
BKE_report(reports, RPT_ERROR, "Object has negative scale, \nsculpting may be unpredictable.\nApply scale in object mode with Ctrl A->Scale.");
}
Paint *paint = BKE_paint_get_active_from_paintmode(scene, PAINT_MODE_SCULPT);