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:
@@ -3276,10 +3276,6 @@ static int node_mute_exec(bContext *C, wmOperator *UNUSED(op))
|
|||||||
SpaceNode *snode= CTX_wm_space_node(C);
|
SpaceNode *snode= CTX_wm_space_node(C);
|
||||||
bNode *node;
|
bNode *node;
|
||||||
|
|
||||||
/* no disabling inside of groups */
|
|
||||||
if(node_tree_get_editgroup(snode->nodetree))
|
|
||||||
return OPERATOR_CANCELLED;
|
|
||||||
|
|
||||||
ED_preview_kill_jobs(C);
|
ED_preview_kill_jobs(C);
|
||||||
|
|
||||||
for(node= snode->edittree->nodes.first; node; node= node->next) {
|
for(node= snode->edittree->nodes.first; node; node= node->next) {
|
||||||
|
Reference in New Issue
Block a user