Fix T98316: geometry nodes stop updating after duplication

This was a missing depsgraph update.
This commit is contained in:
Jacques Lucke 2022-05-23 11:29:55 +02:00 committed by Bastien Montagne
parent 3fe1079ecf
commit f626fc27f9
Notes: blender-bot 2023-02-14 09:21:21 +01:00
Referenced by issue #98316, Regression: Geometry Node Tree Stop Update Upon Duplication
1 changed files with 1 additions and 0 deletions

View File

@ -3399,6 +3399,7 @@ static int geometry_node_tree_copy_assign_exec(bContext *C, wmOperator *UNUSED(o
nmd->node_group = new_tree;
id_us_min(&tree->id);
DEG_relations_tag_update(bmain);
WM_event_add_notifier(C, NC_OBJECT | ND_MODIFIER, ob);
return OPERATOR_FINISHED;
}