Skip to content

Commit

Permalink
no default autoAdd/splitArgument autoHide for custom OSC modules
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Jan 2, 2025
1 parent 8107392 commit 79e37c7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Source/Module/modules/osc/custom/CustomOSCModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,10 +502,12 @@ void CustomOSCModule::setupModuleFromJSONData(var data)
}
}
}

autoAdd->setValue(false);
//autoAdd->hideInEditor = true;
//splitArgs->hideInEditor = true;

OSCModule::setupModuleFromJSONData(data);
autoAdd->setValue(false);
autoAdd->hideInEditor = true;
splitArgs->hideInEditor = true;

setupIOConfiguration(hasInput && receiveCC != nullptr && receiveCC->enabled->boolValue(), hasOutput && outputManager != nullptr && outputManager->enabled->boolValue());
}

0 comments on commit 79e37c7

Please sign in to comment.