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>2020-02-04 12:37:52 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-02-04 12:37:52 +0300
commit647521af20cdc7bff6f7803d025106e266d0e0be (patch)
tree23e0c828cc652f0b5698267333a81a6c08a6c240 /source/blender/makesrna
parent9dd6b0842a34b10e6479cb1c0f98d1c48c81198b (diff)
parent057b78c40cf3b79e9cc8a7225d82c0166db693e9 (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index aded0a6ba09..b0ee5da82b3 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -151,9 +151,9 @@ const EnumPropertyItem rna_enum_brush_gpencil_types_items[] = {
#ifndef RNA_RUNTIME
static EnumPropertyItem rna_enum_gpencil_brush_eraser_modes_items[] = {
- {GP_BRUSH_ERASER_SOFT, "SOFT", 0, "Soft", "Use soft eraser"},
- {GP_BRUSH_ERASER_HARD, "HARD", 0, "Hard", "Use hard eraser"},
- {GP_BRUSH_ERASER_STROKE, "STROKE", 0, "Stroke", "Use stroke eraser"},
+ {GP_BRUSH_ERASER_SOFT, "SOFT", 0, "Dissolve,", "Erase strokes, fading their points strength and thickness"},
+ {GP_BRUSH_ERASER_HARD, "HARD", 0, "Point", "Erase stroke points"},
+ {GP_BRUSH_ERASER_STROKE, "STROKE", 0, "Stroke", "Erase entire strokes"},
{0, NULL, 0, NULL, NULL},
};