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:
authorCampbell Barton <ideasman42@gmail.com>2019-07-07 06:43:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 06:54:25 +0300
commite68c8ba24edebc83b86c2fa06f1e74d47737261c (patch)
treef8febfda66bf57f313d29501003d0c2e9b662cb0 /source/blender/makesrna/intern/rna_material.c
parent7a6c50e79c0b9426addd538f2cd373850617e836 (diff)
Cleanup: rename gpencil chess -> checker
Match existing texture name.
Diffstat (limited to 'source/blender/makesrna/intern/rna_material.c')
-rw-r--r--source/blender/makesrna/intern/rna_material.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index 3ff2e884d92..28989d1dd5f 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -433,11 +433,11 @@ static void rna_def_material_greasepencil(BlenderRNA *brna)
static EnumPropertyItem fill_style_items[] = {
{GP_STYLE_FILL_STYLE_SOLID, "SOLID", 0, "Solid", "Fill area with solid color"},
{GP_STYLE_FILL_STYLE_GRADIENT, "GRADIENT", 0, "Gradient", "Fill area with gradient color"},
- {GP_STYLE_FILL_STYLE_CHESSBOARD,
- "CHESSBOARD",
+ {GP_STYLE_FILL_STYLE_CHECKER,
+ "CHECKER",
0,
"Checker Board",
- "Fill area with chessboard pattern"},
+ "Fill area with checkerboard pattern"},
{GP_STYLE_FILL_STYLE_TEXTURE, "TEXTURE", 0, "Texture", "Fill area with image texture"},
{0, NULL, 0, NULL, NULL},
};