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:
authorYevgeny Makarov <jenkm>2020-12-18 04:06:21 +0300
committerHans Goudey <h.goudey@me.com>2020-12-18 04:06:21 +0300
commitef17fb2715a3f24cd5cddd6725bfef4858f87617 (patch)
treef7915f55b209fc323a16562cf4f310fa6bbb0095 /source/blender/editors/sculpt_paint/paint_vertex_color_ops.c
parent23233fcf056e42958972d129ba526c0a103cf179 (diff)
UI: Don't use abbreviations in label text
Expand abbreviations for words like "Bright" (instead of "Brightness"), "Premul", "Lib", "Dir", etc. Differential Revision: https://developer.blender.org/D9862
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_vertex_color_ops.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_color_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c
index b831687ca67..96d22fe4a21 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c
@@ -401,7 +401,7 @@ void PAINT_OT_vertex_color_brightness_contrast(wmOperatorType *ot)
PropertyRNA *prop;
/* identifiers */
- ot->name = "Vertex Paint Bright/Contrast";
+ ot->name = "Vertex Paint Brightness/Contrast";
ot->idname = "PAINT_OT_vertex_color_brightness_contrast";
ot->description = "Adjust vertex color brightness/contrast";