What is the reason for the lower limit on the click track gain being .2?
void Edit::setClickTrackVolume (float gain)
{
clickTrackGain = juce::jlimit (0.2f, 1.0f, gain);
engine.getPropertyStorage().setProperty (SettingID::lastClickTrackLevel, gain);
}
Is there a way to lower the gain past this? Ive tried using edit.clickTrackGain.setValue(0.0f, nullptr);
but it seems the .2 limit still affects this as well. Id like to be able to raise/lower the gain between 0 and 1 instead of .2 and 1