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>2019-09-16 18:09:01 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-09-17 15:56:44 +0300
commit0927e7b83558af51673ab1ed97279ce8c9b13632 (patch)
treefe6d5d7d2f18880075c992563f488167487473a8
parent54b690897ecd95605b97b2c5eb970a95c27ce33c (diff)
Sculpt: Rename pinch to magnify in some brushes
Reviewed By: jbakker Differential Revision: https://developer.blender.org/D5815
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index fc3749d3d3c..e30a6caa231 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -456,7 +456,10 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
# crease_pinch_factor
if capabilities.has_pinch_factor:
row = col.row(align=True)
- row.prop(brush, "crease_pinch_factor", slider=True, text="Pinch")
+ if (brush.sculpt_tool in ('BLOB', 'SNAKE_HOOK')):
+ row.prop(brush, "crease_pinch_factor", slider=True, text="Magnify")
+ else:
+ row.prop(brush, "crease_pinch_factor", slider=True, text="Pinch")
# rake_factor
if capabilities.has_rake_factor: