UI: Alphabetize grease pencil modifier list

The Texture Mapping Modifier was out of place

Differential Revision: https://developer.blender.org/D7474
This commit is contained in:
Adrian Newton 2020-06-29 19:47:38 -04:00 committed by Hans Goudey
parent 062a843bfb
commit 1d29822fa9
1 changed files with 1 additions and 1 deletions

View File

@ -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},
};