From a915e47ca17d6f4949088137f5d39dcb4f582cd2 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Tue, 2 Mar 2021 18:40:42 +0100 Subject: Fix (unreported) Outliner missing updates copying IDs via python Steps to reproduce: - switch to Scripting workspace - execute bpy.data.meshes['Cube'].copy() - Outliner will not show the new mesh immediately Now just send appropriate notifier. Differential Revision: https://developer.blender.org/D10584 --- source/blender/makesrna/intern/rna_ID.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/makesrna/intern/rna_ID.c') diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index fd19352a9a5..6e2005b7314 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -528,6 +528,9 @@ static ID *rna_ID_copy(ID *id, Main *bmain) if (newid != NULL) { id_us_min(newid); } + + WM_main_add_notifier(NC_ID | NA_ADDED, NULL); + return newid; } -- cgit v1.2.3