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
Notes: blender-bot 2023-05-03 10:14:48 +02:00
Referenced by issue #53683, 2.79a release
1 changed files with 2 additions and 2 deletions

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