From a7cca80c3600a127a439bb0824d3b865c1895992 Mon Sep 17 00:00:00 2001 From: Pratik Borhade Date: Mon, 6 Oct 2025 11:53:57 +0200 Subject: [PATCH] Fix #147412: Opening "Randomize Color" sub-panel makes "Modes" disappear Mistake in 56d52a7070 (wrong parameter name). Pull Request: https://projects.blender.org/blender/blender/pulls/147423 --- scripts/startup/bl_ui/properties_paint_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup/bl_ui/properties_paint_common.py b/scripts/startup/bl_ui/properties_paint_common.py index f51315fee6e..8723787cd50 100644 --- a/scripts/startup/bl_ui/properties_paint_common.py +++ b/scripts/startup/bl_ui/properties_paint_common.py @@ -1246,7 +1246,7 @@ def color_jitter_panel(layout, context, brush): row = col.row(align=True) row.enabled = prop_owner.use_color_jitter - row.prop(prop_owner, "value_jitter", slider=True, text="Value", text_context=i18n_contexts.color) + row.prop(prop_owner, "value_jitter", slider=True, text="Value", text_ctxt=i18n_contexts.color) row.prop(prop_owner, "use_stroke_random_val", text="", icon='GP_SELECT_STROKES') row.prop(prop_owner, "use_random_press_val", text="", icon='STYLUS_PRESSURE')