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
This commit is contained in:
Pablo Dobarro 2020-11-06 02:15:36 +01:00
parent 60c4d0b5fb
commit 850f9452a4
1 changed files with 1 additions and 1 deletions

View File

@ -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 */