Depsgraph: Fix wrong flag being assigned

This commit is contained in:
Sergey Sharybin
2017-09-19 20:55:15 +05:00
parent 96ce50449c
commit b31faac17e

View File

@@ -210,8 +210,8 @@ void deg_graph_flush_updates(Main *bmain, Depsgraph *graph)
}
}
id_node->done = COMPONENT_STATE_DONE;
comp_node->done = 1;
id_node->done = 1;
comp_node->done = COMPONENT_STATE_DONE;
/* Flush to nodes along links... */
/* TODO(sergey): This is mainly giving speedup due ot less queue pushes, which