[Bf-blender-cvs] [389724c1ac4] sculpt-dev: Sculpt-dev: Change the negative scale warning from RPT_WARN to RPT_ERROR.

Joseph Eagar noreply at git.blender.org
Mon Mar 14 18:47:41 CET 2022


Commit: 389724c1ac495fe5b5f79babd7ecfd9d646ccd0a
Author: Joseph Eagar
Date:   Mon Mar 14 10:47:11 2022 -0700
Branches: sculpt-dev
https://developer.blender.org/rB389724c1ac495fe5b5f79babd7ecfd9d646ccd0a

Sculpt-dev: Change the negative scale warning from RPT_WARN
            to RPT_ERROR.

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

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 746ba87d4db..13a2fe2033e 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -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);



More information about the Bf-blender-cvs mailing list