[Bf-blender-cvs] [1e286d7f8f5] temp-gpencil-automask: GPencil: Keep old bit value

Antonio Vazquez noreply at git.blender.org
Thu Oct 6 18:46:18 CEST 2022


Commit: 1e286d7f8f510bc2d93b1c0558815ceae218bad3
Author: Antonio Vazquez
Date:   Thu Oct 6 18:46:13 2022 +0200
Branches: temp-gpencil-automask
https://developer.blender.org/rB1e286d7f8f510bc2d93b1c0558815ceae218bad3

GPencil: Keep old bit value

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

M	source/blender/makesdna/DNA_scene_types.h

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

diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 43682d1c793..f93cfa232da 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1153,13 +1153,13 @@ typedef enum eGP_Sculpt_SettingsFlag {
   /** Apply primitive curve. */
   GP_SCULPT_SETT_FLAG_PRIMITIVE_CURVE = (1 << 1),
   /** Scale thickness. */
-  GP_SCULPT_SETT_FLAG_SCALE_THICKNESS = (1 << 2),
+  GP_SCULPT_SETT_FLAG_SCALE_THICKNESS = (1 << 3),
   /* Stroke Auto-Masking for sculpt. */
-  GP_SCULPT_SETT_FLAG_AUTOMASK_STROKE = (1 << 3),
+  GP_SCULPT_SETT_FLAG_AUTOMASK_STROKE = (1 << 4),
   /* Layer Auto-Masking for sculpt. */
-  GP_SCULPT_SETT_FLAG_AUTOMASK_LAYER = (1 << 4),
+  GP_SCULPT_SETT_FLAG_AUTOMASK_LAYER = (1 << 5),
   /* Material Auto-Masking for sculpt. */
-  GP_SCULPT_SETT_FLAG_AUTOMASK_MATERIAL = (1 << 5),
+  GP_SCULPT_SETT_FLAG_AUTOMASK_MATERIAL = (1 << 6),
 
 } eGP_Sculpt_SettingsFlag;



More information about the Bf-blender-cvs mailing list