[Bf-blender-cvs] [850f9452a47] blender-v2.91-release: Fix wrong DNA flag for hide face sets

Pablo Dobarro noreply at git.blender.org
Mon Nov 9 21:16:12 CET 2020


Commit: 850f9452a477dda876bafbb54cea9a3a9f39cd54
Author: Pablo Dobarro
Date:   Fri Nov 6 02:15:36 2020 +0100
Branches: blender-v2.91-release
https://developer.blender.org/rB850f9452a477dda876bafbb54cea9a3a9f39cd54

Fix wrong DNA flag for hide face sets

It was using the same flag as SCULPT_DYNTOPO_DETAIL_MANUAL

Reviewed By: sergey

Differential Revision: https://developer.blender.org/D9484

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

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 2449608be4c..af499b0684b 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -2203,7 +2203,7 @@ typedef enum eSculptFlags {
   SCULPT_HIDE_MASK = (1 << 15),
 
   /* Don't display face sets in viewport. */
-  SCULPT_HIDE_FACE_SETS = (1 << 16),
+  SCULPT_HIDE_FACE_SETS = (1 << 17),
 } eSculptFlags;
 
 /* ImagePaintSettings.mode */



More information about the Bf-blender-cvs mailing list