VRFS-1328 - wire up faders to use audio taper curve instead of percentage
This commit is contained in:
parent
72155c7ea6
commit
70da64a26e
|
|
@ -1147,8 +1147,8 @@
|
|||
// volumes on trackVolumeObject, and call SetControlState to stick.
|
||||
var sliderValue = percentToMixerValue(
|
||||
currentMixerRangeMin, currentMixerRangeMax, volumePercent);
|
||||
context.trackVolumeObject.volL = sliderValue;
|
||||
context.trackVolumeObject.volR = sliderValue;
|
||||
context.trackVolumeObject.volL = context.JK.FaderHelpers.convertPercentToAudioTaper(volumePercent);
|
||||
context.trackVolumeObject.volR = context.JK.FaderHelpers.convertPercentToAudioTaper(volumePercent);
|
||||
// Special case for L2M mix:
|
||||
if (mixerId === '__L2M__') {
|
||||
logger.debug("L2M volumePercent=" + volumePercent);
|
||||
|
|
|
|||
Loading…
Reference in New Issue