diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py index b41d9adcab5..d531e2d5f9b 100644 --- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py +++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py @@ -1134,6 +1134,10 @@ class _defs_weight_paint: def draw_settings(context, layout, tool): props = tool.operator_properties("paint.weight_gradient") layout.prop(props, "type") + brush = context.tool_settings.weight_paint.brush + if brush is not None: + from .properties_paint_common import UnifiedPaintPanel + UnifiedPaintPanel.prop_unified_weight(layout, context, brush, "weight", slider=True, text="Weight") return dict( text="Gradient",