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:
authorJun Mizutani <jmztn>2022-05-11 09:56:26 +0300
committerHans Goudey <h.goudey@me.com>2022-05-11 09:56:26 +0300
commit195986a71969f2fa20c4d6de89cdbcb8f62f3ba1 (patch)
tree9b07f590889b4e4436500b01d2d6602067a267fd
parent8650c2b614e48480b20f7bfd7d448edb8b0a6329 (diff)
Fix: Curves interpolate point count option missing from panels
Added in 8852191b779e880fe4d5116f2bee3fcddb8aced4 Differential Revision: https://developer.blender.org/D14919
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index 782fec91f91..649e09fdfaa 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -776,6 +776,7 @@ def brush_settings(layout, context, brush, popover=False):
layout.prop(brush.curves_sculpt_settings, "curve_length")
layout.prop(brush.curves_sculpt_settings, "interpolate_length")
layout.prop(brush.curves_sculpt_settings, "interpolate_shape")
+ layout.prop(brush.curves_sculpt_settings, "interpolate_point_count")
use_frontface = True
elif brush.curves_sculpt_tool == 'GROW_SHRINK':
layout.prop(brush.curves_sculpt_settings, "scale_uniform")