UI: Fix case in Grease Pencil Auto-Masking

Every word should be capitalized, as established in the guidelines.

Matches mesh sculpt Auto-Masking.
This commit is contained in:
Pablo Vazquez
2024-10-01 16:37:07 +02:00
parent 965fdf0d54
commit e9bce13bfb

View File

@@ -9027,14 +9027,14 @@ def draw_gpencil_material_active(context, layout):
class VIEW3D_PT_gpencil_sculpt_automasking(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'HEADER'
bl_label = "Auto-masking"
bl_label = "Auto-Masking"
bl_ui_units_x = 10
def draw(self, context):
layout = self.layout
tool_settings = context.scene.tool_settings
layout.label(text="Auto-masking")
layout.label(text="Auto-Masking")
col = layout.column(align=True)
col.prop(tool_settings.gpencil_sculpt, "use_automasking_stroke", text="Stroke")