Page MenuHome
Paste P1225

Tiny UI inconsistency
ActivePublic

Authored by Aaron Carlisle (Blendify) on Jan 20 2020, 9:27 PM.
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 22d52f29c10..348a5dc4268 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,", "Fade stoke colors"},
+ {GP_BRUSH_ERASER_HARD, "HARD", 0, "Point", "Erase stoke points"},
+ {GP_BRUSH_ERASER_STROKE, "STROKE", 0, "Stroke", "Erase entire strokes"},
{0, NULL, 0, NULL, NULL},
};