Skip to content

Commit

Permalink
Align coding style
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Stone <[email protected]>
  • Loading branch information
jstone-lucasfilm authored Oct 16, 2023
1 parent 9226ab2 commit a21c8cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/MaterialXGraphEditor/Graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3789,7 +3789,8 @@ void Graph::addPinPopup()
{
UiPinPtr connectedPin = pin->getConnections()[i];
connected = connected + " " + connectedPin->_name;
if (i != size - 1) {
if (i != size - 1)
{
connected = connected + ",";
}
}
Expand Down

0 comments on commit a21c8cd

Please sign in to comment.