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:
authorAaron Carlisle <Blendify>2020-02-04 12:35:31 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-02-04 12:35:45 +0300
commit057b78c40cf3b79e9cc8a7225d82c0166db693e9 (patch)
tree4e872aedbf29103f5c7356b29d7d323b17490880 /source/blender/makesrna/intern/rna_brush.c
parentae433393afda7e65462ccece9a67c744910bd9e3 (diff)
Grease Pencil: UI: Clarifiy Erase modes
The erase mode has an option to change the erase mode from soft/hard/stroke. However, there are 4 brush types: hard/soft/point/stroke. Hard and Soft here are similar (they are both "soft" erase mode) only having different strengths. The erase mode should be soft (Maybe this should be renamed to something more generic like "fade"), point, stroke. Reviewed By: #user_interface, #grease_pencil, billreynish, antoniov Differential Revision: https://developer.blender.org/D6733
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-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},
};