[Bf-blender-cvs] [b67b414a85e] master: GPencil: Replace Tint mode "Both" to "Stroke and Fill"

Antonio Vazquez noreply at git.blender.org
Tue Mar 24 16:02:04 CET 2020


Commit: b67b414a85e92171309aba4ac1c73441dfe6be92
Author: Antonio Vazquez
Date:   Tue Mar 24 16:01:50 2020 +0100
Branches: master
https://developer.blender.org/rBb67b414a85e92171309aba4ac1c73441dfe6be92

GPencil: Replace Tint mode "Both" to "Stroke and Fill"

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

M	source/blender/makesrna/intern/rna_gpencil_modifier.c

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

diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 31775a70af6..bcabdd472c8 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -1022,7 +1022,7 @@ static void rna_def_modifier_gpenciltint(BlenderRNA *brna)
   static EnumPropertyItem tint_mode_types_items[] = {
       {GPPAINT_MODE_STROKE, "STROKE", 0, "Stroke", "Vertex Color affects to Stroke only"},
       {GPPAINT_MODE_FILL, "FILL", 0, "Fill", "Vertex Color affects to Fill only"},
-      {GPPAINT_MODE_BOTH, "BOTH", 0, "Both", "Vertex Color affects to Stroke and Fill"},
+      {GPPAINT_MODE_BOTH, "BOTH", 0, "Stroke and Fill", "Vertex Color affects to Stroke and Fill"},
       {0, NULL, 0, NULL, NULL},
   };



More information about the Bf-blender-cvs mailing list