Skip to content
Snippets Groups Projects
Commit f9145484 authored by Josh Siegle's avatar Josh Siegle
Browse files

Update checks for isUtility flag

parent 2e782167
Branches
Tags
No related merge requests found
......@@ -70,7 +70,7 @@ void GenericEditor::constructorInitialize(GenericProcessor* owner, bool useDefau
//Typeface::Ptr typeface = new CustomTypeface(mis);
titleFont = Font("Small Text", 10, Font::plain);
if (!owner->isMerger() && !owner->isSplitter())
if (!owner->isMerger() && !owner->isSplitter() && !owner->isUtility())
{
std::cout << "Adding drawer button." << std::endl;
......
......@@ -303,7 +303,7 @@ void ProcessorGraph::updateConnections(Array<SignalChainTabButton*, CriticalSect
// add the connections to audio and record nodes if necessary
if (!(source->isSink() ||
source->isSplitter() || source->isMerger()) && !(source->wasConnected))
source->isSplitter() || source->isMerger() || source->isUtility()) && !(source->wasConnected))
{
std::cout << " Connecting to audio and record nodes." << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment