From 2a7739f9d3984922cc168238423bb91128dda863 Mon Sep 17 00:00:00 2001 From: Sam Cantwell Date: Wed, 7 Jun 2023 08:17:31 -0700 Subject: [PATCH] Fix #108303: Added missing Auto-Masking label The Auto-Masking label in the brush settings of sculpt mode was missing. Added the label back. Pull Request: #108494 --- scripts/startup/bl_ui/properties_paint_common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/startup/bl_ui/properties_paint_common.py b/scripts/startup/bl_ui/properties_paint_common.py index f524353be92..0df1d351cbb 100644 --- a/scripts/startup/bl_ui/properties_paint_common.py +++ b/scripts/startup/bl_ui/properties_paint_common.py @@ -937,7 +937,6 @@ def brush_settings_advanced(layout, context, brush, popover=False): col = layout.column(heading="Auto-Masking", align=True) - col = layout.column(align=True) col.prop(brush, "use_automasking_topology", text="Topology") col.prop(brush, "use_automasking_face_sets", text="Face Sets")