We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95f9f00 commit d86de10Copy full SHA for d86de10
1 file changed
Source/CoreServices.cpp
@@ -318,10 +318,12 @@ namespace CoreServices
318
319
bool isSynchronized(int nodeId)
320
{
321
- for (auto* node : getProcessorGraph()->getRecordNodes())
322
- {
323
- return node->isSynchronized();
324
- }
+ for (auto* node : getProcessorGraph()->getRecordNodes())
+ {
+ if (node->getNodeId() == nodeId)
+ return node->isSynchronized();
325
+ }
326
+ return false;
327
}
328
329
/* NOT YET IMPLEMENTED -- these functions are currently global only
0 commit comments