0
0
Fork 0

me-main #1

Merged
Nate Rupsis merged 123 commits from me-main into main 2023-02-13 18:39:11 +01:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 5c994d7846 - Show all commits

View File

@ -538,6 +538,11 @@ static bNodeSocket *determine_socket_to_view(bNode &node_to_view)
/* This socket is linked to a deactivated viewer, the viewer should be activated. */
return socket;
}
if (socket->type == SOCK_GEOMETRY && (target_node.flag & NODE_DO_OUTPUT)) {
/* Skip geometry sockets connected to viewer nodes when deciding whether to cycle through
* outputs. */
continue;
}
last_linked_socket_index = socket->index();
}
}