Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2022-05-19 17:21:25 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-05-19 17:21:25 +0300
commitf8ebb0e1d556244d8e79c2efa105df9df909e3f8 (patch)
treedda0ed1816fc891b837e2255a3745680b9ace519 /source/blender
parent24745e8d27903ae741565c5e15f147d206a1030e (diff)
GPencil: Remove icons in Build modifer mode parameter
The list must not use icons. Feedback by @pablovazquez
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 1f9bb972923..be2ac6b12be 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -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},