Fix T76654: Wrong text in Face Set boundary automasking brush property

Reviewed By: Blendify

Maniphest Tasks: T76654

Differential Revision: https://developer.blender.org/D7697
This commit is contained in:
Pablo Dobarro 2020-05-13 04:11:10 +02:00
parent 95583a398c
commit 5445353095
Notes: blender-bot 2023-02-13 22:33:12 +01:00
Referenced by issue #76654, UI: Face Sets Automasking labels issue
2 changed files with 3 additions and 3 deletions

View File

@ -820,7 +820,7 @@ def brush_settings_advanced(layout, context, brush, popover=False):
# boundary edges/face sets automasking
col.prop(brush, "use_automasking_boundary_edges", text="Mesh Boundary")
col.prop(brush, "use_automasking_boundary_face_sets", text="Face Sets")
col.prop(brush, "use_automasking_boundary_face_sets", text="Face Sets Boundary")
col.prop(brush, "automasking_boundary_edges_propagation_steps")
layout.separator()

View File

@ -843,8 +843,8 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
col = layout.column(heading="Auto-Masking", align=True)
col.prop(sculpt, "use_automasking_topology", text="Topology")
col.prop(sculpt, "use_automasking_face_sets", text="Face Sets")
col.prop(sculpt, "use_automasking_boundary_edges", text="Boundary Edges")
col.prop(sculpt, "use_automasking_boundary_face_sets", text="Boundary Face Sets")
col.prop(sculpt, "use_automasking_boundary_edges", text="Mesh Boundary")
col.prop(sculpt, "use_automasking_boundary_face_sets", text="Face Sets Boundary")
class VIEW3D_PT_sculpt_options_gravity(Panel, View3DPaintPanel):