[Bf-blender-cvs] [f8ebb0e1d55] blender-v3.2-release: GPencil: Remove icons in Build modifer mode parameter

Antonio Vazquez noreply at git.blender.org
Thu May 19 16:21:34 CEST 2022


Commit: f8ebb0e1d556244d8e79c2efa105df9df909e3f8
Author: Antonio Vazquez
Date:   Thu May 19 16:21:25 2022 +0200
Branches: blender-v3.2-release
https://developer.blender.org/rBf8ebb0e1d556244d8e79c2efa105df9df909e3f8

GPencil: Remove icons in Build modifer mode parameter

The list must not use icons.

Feedback by @pablovazquez

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

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



More information about the Bf-blender-cvs mailing list