GPencil: Remove icons in Build modifer mode parameter

The list must not use icons.

Feedback by @pablovazquez
This commit is contained in:
Antonio Vazquez 2022-05-19 16:21:25 +02:00
parent 24745e8d27
commit f8ebb0e1d5
1 changed files with 3 additions and 3 deletions

View File

@ -2111,17 +2111,17 @@ static void rna_def_modifier_gpencilbuild(BlenderRNA *brna)
static EnumPropertyItem prop_gpencil_build_mode_items[] = {
{GP_BUILD_MODE_SEQUENTIAL,
"SEQUENTIAL",
ICON_PARTICLE_POINT,
0,
"Sequential",
"Strokes appear/disappear one after the other, but only a single one changes at a time"},
{GP_BUILD_MODE_CONCURRENT,
"CONCURRENT",
ICON_PARTICLE_TIP,
0,
"Concurrent",
"Multiple strokes appear/disappear at once"},
{GP_BUILD_MODE_ADDITIVE,
"ADDITIVE",
ICON_PARTICLE_PATH,
0,
"Additive",
"Builds only new strokes (assuming 'additive' drawing)"},
{0, NULL, 0, NULL, NULL},