[Bf-blender-cvs] [ecc5a506831] greasepencil-refactor: Cleanup: Sort flag options

Antonio Vazquez noreply at git.blender.org
Sat Dec 14 12:50:59 CET 2019


Commit: ecc5a50683172031f3b2c0b116de534477f81a91
Author: Antonio Vazquez
Date:   Sat Dec 14 12:50:50 2019 +0100
Branches: greasepencil-refactor
https://developer.blender.org/rBecc5a50683172031f3b2c0b116de534477f81a91

Cleanup: Sort flag options

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

M	source/blender/makesdna/DNA_gpencil_types.h

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

diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 5bbad05e90f..e8a23ef7466 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -406,6 +406,8 @@ typedef enum eGPDlayer_Flag {
   GP_LAYER_ACTIVE = (1 << 2),
   /* draw points of stroke for debugging purposes */
   GP_LAYER_DRAWDEBUG = (1 << 3),
+  /* Flag used to display in Paint mode only layers with keyframe */
+  GP_LAYER_SOLO_MODE = (1 << 4),
   /* for editing in Action Editor */
   GP_LAYER_SELECT = (1 << 5),
   /* current frame for layer can't be changed */
@@ -418,8 +420,6 @@ typedef enum eGPDlayer_Flag {
   GP_LAYER_UNLOCK_COLOR = (1 << 12),
   /* Mask Layer */
   GP_LAYER_USE_MASK = (1 << 13),
-  /* Flag used to display in Paint mode only layers with keyframe */
-  GP_LAYER_SOLO_MODE = (1 << 4),
   /* Ruler Layer */
   GP_LAYER_IS_RULER = (1 << 14),
 } eGPDlayer_Flag;



More information about the Bf-blender-cvs mailing list