Fix for [#34821] Split Viewer node won't show the backdrop

* Regression introduced in r55451
This commit is contained in:
Thomas Dinges
2013-03-31 19:46:11 +00:00
parent 146a1545c3
commit 6382ebe67d

View File

@@ -115,7 +115,7 @@ static void compo_tag_output_nodes(bNodeTree *nodetree, int recalc_flags)
if (recalc_flags & COM_RECALC_COMPOSITE)
node->flag |= NODE_DO_OUTPUT_RECALC;
}
else if (node->type == CMP_NODE_VIEWER) {
else if (node->type == CMP_NODE_VIEWER || node->type == CMP_NODE_SPLITVIEWER) {
if (recalc_flags & COM_RECALC_VIEWER)
node->flag |= NODE_DO_OUTPUT_RECALC;
}