Cleanup: make format

This commit is contained in:
Jacques Lucke 2022-03-31 11:00:42 +02:00
parent 0d223f6aca
commit 7e54f5c218
1 changed files with 2 additions and 2 deletions

View File

@ -842,7 +842,7 @@ static void node_group_make_insert_selected(const bContext &C, bNodeTree &ntree,
}
else if (toselect && !fromselect) {
/* Remove hidden links to not create unconnected sockets in the interface. */
if (nodeLinkIsHidden(link)){
if (nodeLinkIsHidden(link)) {
nodeRemLink(&ntree, link);
continue;
}
@ -868,7 +868,7 @@ static void node_group_make_insert_selected(const bContext &C, bNodeTree &ntree,
}
else if (fromselect && !toselect) {
/* Remove hidden links to not create unconnected sockets in the interface. */
if (nodeLinkIsHidden(link)){
if (nodeLinkIsHidden(link)) {
nodeRemLink(&ntree, link);
continue;
}