[Bf-blender-cvs] [b0993bf7ec3] greasepencil-object: Set BOTH mode as default for fill brush

Antonio Vazquez noreply at git.blender.org
Mon Jan 22 19:22:30 CET 2018


Commit: b0993bf7ec39cd0694c871770c4460471b43ddc2
Author: Antonio Vazquez
Date:   Mon Jan 22 19:17:24 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rBb0993bf7ec39cd0694c871770c4460471b43ddc2

Set BOTH mode as default for fill brush

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

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 5084387beb0..3f7bcde4df4 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -501,7 +501,6 @@ typedef enum eGPdata_Flag {
 	GP_DATA_STROKE_SHOW_EDIT_LINES = (1 << 18),
 } eGPdata_Flag;
 
-
 /* gpd->onion_flag */
 typedef enum eGPD_OnionFlag {
 	/* use custom color for ghosts before current frame */
@@ -514,7 +513,6 @@ typedef enum eGPD_OnionFlag {
 	GP_ONION_FADE = (1 << 3),
 } eGPD_OnionFlag;
 
-
 /* gpd->onion_mode */
 typedef enum eGP_OnionModes {
 	GP_ONION_MODE_ABSOLUTE = 0,
@@ -524,9 +522,9 @@ typedef enum eGP_OnionModes {
 
 /* gpd->fill draw modes */
 typedef enum eGP_FillDrawModes {
-	GP_FILL_DMODE_STROKE = 0,
-	GP_FILL_DMODE_CONTROL = 1,
-	GP_FILL_DMODE_BOTH = 2,
+	GP_FILL_DMODE_BOTH = 0,
+	GP_FILL_DMODE_STROKE = 1,
+	GP_FILL_DMODE_CONTROL = 2,
 } eGP_FillDrawModes;
 
 /* xray modes (Depth Ordering) */



More information about the Bf-blender-cvs mailing list