Fix #27626: nodes inside groups can't be muted. There was a check here to

disable this, but with recent node muting patch and node group changes it
should work now.
This commit is contained in:
Brecht Van Lommel 2011-12-02 15:08:27 +00:00
parent efe4ea284a
commit f96aad6688

@ -3276,10 +3276,6 @@ static int node_mute_exec(bContext *C, wmOperator *UNUSED(op))
SpaceNode *snode= CTX_wm_space_node(C);
bNode *node;
/* no disabling inside of groups */
if(node_tree_get_editgroup(snode->nodetree))
return OPERATOR_CANCELLED;
ED_preview_kill_jobs(C);
for(node= snode->edittree->nodes.first; node; node= node->next) {