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:
authorAntonioya <blendergit@gmail.com>2019-05-30 13:15:41 +0300
committerAntonioya <blendergit@gmail.com>2019-05-30 14:23:26 +0300
commit0f8746e724f981c298e4a7c751759e75b0fe6d4c (patch)
tree82bb370b619de260389b4f554ea031a2128f0e6e /source/blender/makesrna/intern/rna_gpencil.c
parent1cb74768c12b0cd668f88af4ad8fe1598a5d44e9 (diff)
GPencil: Rename Blend mode "Normal" to "Regular"
The UI used "Regular" already, but internally the code didn't.
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index f00921bf072..925588e8ea6 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -113,7 +113,7 @@ static const EnumPropertyItem rna_enum_gplayer_move_type_items[] = {
};
static const EnumPropertyItem rna_enum_layer_blend_modes_items[] = {
- {eGplBlendMode_Normal, "NORMAL", 0, "Regular", ""},
+ {eGplBlendMode_Regular, "REGULAR", 0, "Regular", ""},
{eGplBlendMode_Overlay, "OVERLAY", 0, "Overlay", ""},
{eGplBlendMode_Add, "ADD", 0, "Add", ""},
{eGplBlendMode_Subtract, "SUBTRACT", 0, "Subtract", ""},