You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the channel mapper, disabling the channel marked as "1" causes all the channels to be of zero value. This is independent of the position on the "1" channel in the map.
The text was updated successfully, but these errors were encountered:
This is due to the way that we are connecting channels across processors. JUCE's built-in method for wiring up the processor graph check for connections between every possible combination of channels across all processors, and is therefore extremely slow for high channel counts. To speed this up, we modified it to only check the first channel. However, this means the Channel Map won't get connected if channel 1 is disabled (even if you change the channel order).
The wiring algorithm is fortunately much more efficient in JUCE 7, so this will get fixed in the next major GUI release.
In the channel mapper, disabling the channel marked as "1" causes all the channels to be of zero value. This is independent of the position on the "1" channel in the map.
The text was updated successfully, but these errors were encountered: