Hi,
In ImGUI, if you have two UI elements with the same label, editing UI element 1 will also change the value of UI element 2 if both are visible.
In NAP’s ParameterGui, this problem will occur if two parameters have the same display name.
A simple way to solve this would be to set the label to (parameter->getDisplayName() + "##" + parameter->mID)
instead of parameter->getDisplayName()
.
See also ‘Solving ID conflict’ in ImGUI’s FAQ: https://github.com/ocornut/imgui/blob/master/docs/FAQ.md
Casi