[Bf-blender-cvs] [745f773d92b] master: GPencil: Fix tooltips for Simplify modifier

Antonio Vazquez noreply at git.blender.org
Sat Aug 10 17:04:41 CEST 2019


Commit: 745f773d92b6d1aa65154a899ba3a5293fa75d4d
Author: Antonio Vazquez
Date:   Sat Aug 10 17:00:49 2019 +0200
Branches: master
https://developer.blender.org/rB745f773d92b6d1aa65154a899ba3a5293fa75d4d

GPencil: Fix tooltips for Simplify modifier

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

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 dfe9e018e94..48ef4b6c29e 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -611,7 +611,7 @@ static void rna_def_modifier_gpencilsimplify(BlenderRNA *brna)
        "FIXED",
        ICON_IPO_CONSTANT,
        "Fixed",
-       "Delete alternative vertices in the stroke, except extremes"},
+       "Delete alternating vertices in the stroke, except extremes"},
       {GP_SIMPLIFY_ADAPTIVE,
        "ADAPTIVE",
        ICON_IPO_EASE_IN_OUT,
@@ -626,7 +626,7 @@ static void rna_def_modifier_gpencilsimplify(BlenderRNA *brna)
        "MERGE",
        ICON_IPO_EASE_IN_OUT,
        "Merge",
-       "Sample a curve using doing merge of vertex"},
+       "Simplify the stroke by merging vertices closer than a given distance"},
       {0, NULL, 0, NULL, NULL},
   };



More information about the Bf-blender-cvs mailing list