diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc index 436676b989d..d3481ce1a16 100644 --- a/source/blender/modifiers/intern/MOD_nodes.cc +++ b/source/blender/modifiers/intern/MOD_nodes.cc @@ -751,7 +751,16 @@ static void panel_draw(const bContext *UNUSED(C), Panel *panel) RNA_pointer_create(ptr->owner_id, &RNA_NodesModifierSettings, &nmd->settings, &settings_ptr); uiDefAutoButsRNA( - layout, &settings_ptr, NULL, NULL, NULL, UI_BUT_LABEL_ALIGN_SPLIT_COLUMN, false); + layout, + &settings_ptr, + [](PointerRNA *UNUSED(ptr), PropertyRNA *prop, void *UNUSED(user_data)) { + const char *identifier = RNA_property_identifier(prop); + return !STREQ(identifier, "_RNA_UI"); + }, + NULL, + NULL, + UI_BUT_LABEL_ALIGN_SPLIT_COLUMN, + false); } modifier_panel_end(layout, ptr);