Fix missing tag for detecting changes with bpy.data.node_groups[...].is_updated.

This commit is contained in:
Brecht Van Lommel 2014-08-22 15:51:15 +02:00 committed by Brecht Van Lommel
parent 7c052a8877
commit 4ba0f44151

@ -138,6 +138,10 @@ void ED_node_tag_update_id(ID *id)
DAG_id_tag_update(id, 0);
WM_main_add_notifier(NC_TEXTURE | ND_NODES, id);
}
else if(id == &ntree->id) {
/* node groups */
DAG_id_tag_update(id, 0);
}
}
void ED_node_tag_update_nodetree(Main *bmain, bNodeTree *ntree)