Skip to content

Commit

Permalink
Minor formatting updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Stone <jstone@lucasfilm.com>
  • Loading branch information
jstone-lucasfilm authored Jul 11, 2024
1 parent 680ff7f commit 1f6e221
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/MaterialXGraphEditor/Graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2752,9 +2752,9 @@ void Graph::deleteLinkInfo(int startAttr, int endAttr)
{
int upNode = getNodeId(startAttr);
int downNode = getNodeId(endAttr);

if (upNode == -1 || downNode == -1) {
return ;
if (upNode == -1 || downNode == -1)
{
return;
}

// Change input to default value
Expand Down

0 comments on commit 1f6e221

Please sign in to comment.