Skip to content

Commit

Permalink
Fix #1484
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKepzie committed Nov 11, 2016
1 parent 3841b52 commit 556e4e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Engine/Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,11 @@ Node::getPreferredInputInternal(bool connected) const
}
}
}
bool useInputA = appPTR->getCurrentSettings()->isMergeAutoConnectingToAInput();
bool useInputA = false;
if (!connected) {
// For the merge node, use the preference (only when not connected)
useInputA = appPTR->getCurrentSettings()->isMergeAutoConnectingToAInput();
}

///Find an input named A
int inputToFind = -1, foundOther = -1;
Expand Down

0 comments on commit 556e4e2

Please sign in to comment.