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:
authorPablo Dobarro <pablodp606@gmail.com>2020-05-13 05:11:10 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-05-13 18:06:48 +0300
commit54453530951b83d123d24028950e1ed67b8971b9 (patch)
tree915ef375d1e15fa5bc04cb03e2a0c46441f612ec /release/scripts/startup/bl_ui/properties_paint_common.py
parent95583a398c77ba9d8c15310b2b867adbdbafe908 (diff)
Fix T76654: Wrong text in Face Set boundary automasking brush property
Reviewed By: Blendify Maniphest Tasks: T76654 Differential Revision: https://developer.blender.org/D7697
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_paint_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index dfaf574f1d0..92d421f63a8 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -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()