From e68c8ba24edebc83b86c2fa06f1e74d47737261c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 7 Jul 2019 13:43:42 +1000 Subject: Cleanup: rename gpencil chess -> checker Match existing texture name. --- release/scripts/startup/bl_ui/properties_material_gpencil.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'release/scripts/startup/bl_ui/properties_material_gpencil.py') diff --git a/release/scripts/startup/bl_ui/properties_material_gpencil.py b/release/scripts/startup/bl_ui/properties_material_gpencil.py index b4252b1afa4..29a89c7b4a3 100644 --- a/release/scripts/startup/bl_ui/properties_material_gpencil.py +++ b/release/scripts/startup/bl_ui/properties_material_gpencil.py @@ -189,25 +189,25 @@ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, Panel): if gpcolor.fill_style != 'TEXTURE': col.prop(gpcolor, "fill_color", text="Color") - if gpcolor.fill_style in {'GRADIENT', 'CHESSBOARD'}: + if gpcolor.fill_style in {'GRADIENT', 'CHECKER'}: col.prop(gpcolor, "mix_color", text="Secondary Color") if gpcolor.fill_style == 'GRADIENT': col.prop(gpcolor, "mix_factor", text="Mix Factor", slider=True) - if gpcolor.fill_style in {'GRADIENT', 'CHESSBOARD'}: + if gpcolor.fill_style in {'GRADIENT', 'CHECKER'}: col.prop(gpcolor, "flip", text="Flip Colors") col.prop(gpcolor, "pattern_shift", text="Location") col.prop(gpcolor, "pattern_scale", text="Scale") - if gpcolor.gradient_type == 'RADIAL' and gpcolor.fill_style not in {'SOLID', 'CHESSBOARD'}: + if gpcolor.gradient_type == 'RADIAL' and gpcolor.fill_style not in {'SOLID', 'CHECKER'}: col.prop(gpcolor, "pattern_radius", text="Radius") else: if gpcolor.fill_style != 'SOLID': col.prop(gpcolor, "pattern_angle", text="Angle") - if gpcolor.fill_style == 'CHESSBOARD': + if gpcolor.fill_style == 'CHECKER': col.prop(gpcolor, "pattern_gridsize", text="Box Size") # Texture -- cgit v1.2.3