We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3044396 commit 710f249Copy full SHA for 710f249
ficsit-companion/src/app.cpp
@@ -2344,7 +2344,7 @@ void App::RenderNodes()
2344
}
2345
2346
// Update lock state
2347
- node->outs.at(0)->SetLocked(num_unlocked < node->ins.size());
+ node->outs.at(0)->SetLocked(num_unlocked == 0);
2348
2349
2350
@@ -2524,7 +2524,7 @@ void App::RenderNodes()
2524
2525
2526
2527
- node->ins.at(0)->SetLocked(num_unlocked < node->outs.size());
+ node->ins.at(0)->SetLocked(num_unlocked == 0);
2528
2529
else // GameSplitter
2530
{
0 commit comments