[Bf-blender-cvs] [1d29822fa9a] master: UI: Alphabetize grease pencil modifier list

Adrian Newton noreply at git.blender.org
Tue Jun 30 01:49:17 CEST 2020


Commit: 1d29822fa9a66d318eb42e023d67aa5759f37c1b
Author: Adrian Newton
Date:   Mon Jun 29 19:47:38 2020 -0400
Branches: master
https://developer.blender.org/rB1d29822fa9a66d318eb42e023d67aa5759f37c1b

UI: Alphabetize grease pencil modifier list

The Texture Mapping Modifier was out of place

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

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

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 06bec3bf944..1c39ad3a1a8 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -128,12 +128,12 @@ const EnumPropertyItem rna_enum_object_greasepencil_modifier_type_items[] = {
      ICON_MOD_OPACITY,
      "Opacity",
      "Opacity of the strokes"},
-    {eGpencilModifierType_Tint, "GP_TINT", ICON_MOD_TINT, "Tint", "Tint strokes with new color"},
     {eGpencilModifierType_Texture,
      "GP_TEXTURE",
      ICON_TEXTURE,
      "Texture Mapping",
      "Change stroke uv texture values"},
+    {eGpencilModifierType_Tint, "GP_TINT", ICON_MOD_TINT, "Tint", "Tint strokes with new color"},
     {0, NULL, 0, NULL, NULL},
 };



More information about the Bf-blender-cvs mailing list