Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-04-16 15:12:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-16 15:13:05 +0300
commit278b19745b9d8d8f108f98d7686d0366fbbde736 (patch)
tree91d4621fbad3cb4224e16949191dea9641496b93 /source
parentafd8e4bce7937baf016b973c091da3d954ffaf76 (diff)
Cleanup: clang-format
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/node_relationships.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_relationships.c b/source/blender/editors/space_node/node_relationships.c
index 8b0d7ef77b3..91fe8f5ec89 100644
--- a/source/blender/editors/space_node/node_relationships.c
+++ b/source/blender/editors/space_node/node_relationships.c
@@ -228,7 +228,7 @@ static void pick_link(const bContext *C,
BLI_assert(nldrag->last_node_hovered_while_dragging_a_link != NULL);
sort_multi_input_socket_links(
- snode, nldrag->last_node_hovered_while_dragging_a_link, NULL,NULL);
+ snode, nldrag->last_node_hovered_while_dragging_a_link, NULL, NULL);
/* Send changed event to original link->tonode. */
if (node) {
@@ -901,7 +901,7 @@ static void node_link_find_socket(bContext *C, wmOperator *op, float cursor[2])
existing_link_connected_to_fromsock->multi_input_socket_index;
continue;
}
- if(link->tosock && link->tosock->flag & SOCK_MULTI_INPUT){
+ if (link->tosock && link->tosock->flag & SOCK_MULTI_INPUT) {
sort_multi_input_socket_links(snode, tnode, link, cursor);
}
}