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:
authorDalai Felinto <dalai@blender.org>2022-07-01 11:20:07 +0300
committerDalai Felinto <dalai@blender.org>2022-07-01 11:23:58 +0300
commit3ffc5583411ac6e1286586881bdbe1207a34b386 (patch)
tree324e40037bfee5ff80cfd6d4f21c3ac91ce91e5f /release/scripts/startup/bl_ui/space_view3d.py
parent0554537c3cb4d040cf9a01695ec3089ad0a8426b (diff)
Sculpt Curves: UI tweaks and shortcut
* Minimum Distance -> Distance Mix * Max Count -> Count Max * Shift + A for selection grow This follows better the names we have in geometry nodes in the Distribute Points node when using the Poisson Disk method (Distance Min, Distance Max). The shortcut for the selection grow is the same we use in mesh sculpt for the Expand Mask operator (which behaves a bit similar).
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index c2342e8949a..5a38c4175a8 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -550,12 +550,12 @@ class _draw_tool_settings_context_mode:
row = layout.row(align=True)
row.prop(brush.curves_sculpt_settings, "density_mode", text="", expand=True)
row = layout.row(align=True)
- row.prop(brush.curves_sculpt_settings, "minimum_distance")
+ row.prop(brush.curves_sculpt_settings, "minimum_distance", text="Distance Min")
row.operator_context = 'INVOKE_REGION_WIN'
row.operator("sculpt_curves.min_distance_edit", text="", icon='DRIVER_DISTANCE')
row = layout.row(align=True)
row.enabled = brush.curves_sculpt_settings.density_mode != 'REMOVE'
- row.prop(brush.curves_sculpt_settings, "density_add_attempts", text="Max Count")
+ row.prop(brush.curves_sculpt_settings, "density_add_attempts", text="Count Max")
layout.popover("VIEW3D_PT_tools_brush_falloff")
layout.popover("VIEW3D_PT_curves_sculpt_add_shape", text="Curve Shape")
elif curves_tool == "SLIDE":