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:22:00 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-05-19 17:22:00 +0300
commiteb13072399559de0a5b38b874b3a00850e1bf483 (patch)
tree3ab7e2a70ffb579de1594382143d33cafec6f915
parentd0fabb318eff5b36b961acaf92fbe5273fdcc8d4 (diff)
parentf8ebb0e1d556244d8e79c2efa105df9df909e3f8 (diff)
Merge branch 'blender-v3.2-release'
-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 e6cb78ffcfc..778f5647417 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2121,17 +2121,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},