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:
authorWilliam Reynish <billrey@me.com>2019-03-22 13:27:56 +0300
committerWilliam Reynish <billrey@me.com>2019-03-22 13:27:56 +0300
commit1e70639ed56dc26e0af23b033a4d3d61f1829cba (patch)
treedba8b23100c73d4fa7d9313351760358eb699268 /release/scripts
parent3f852e00f962cb7042d599039c022bd9b2242c13 (diff)
UI: Move Adjust Strength for Spacing next to the stroke Spacing control
These items are related.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index d3a866fda01..212427dead9 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -535,9 +535,6 @@ class VIEW3D_PT_tools_brush_options(Panel, View3DPaintPanel):
col.prop(brush, "sculpt_plane")
col.prop(brush, "use_original_normal")
- if capabilities.has_space_attenuation:
- col.prop(brush, "use_space_attenuation")
-
col.prop(brush, "use_frontface", text="Front Faces Only")
col.prop(brush, "use_projected")
@@ -867,6 +864,10 @@ class VIEW3D_PT_tools_brush_stroke(Panel, View3DPaintPanel):
col.operator("paintcurve.draw")
if context.sculpt_object:
+
+ if brush.sculpt_capabilities.has_space_attenuation:
+ col.prop(brush, "use_space_attenuation")
+
if brush.sculpt_capabilities.has_jitter:
row = col.row(align=True)