Skip to content

Commit

Permalink
Fix automation
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Jun 19, 2019
1 parent b36bcf4 commit a4cc164
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ BinaryData2.cpp
.vscode/

*.exe
*.pdf
2 changes: 1 addition & 1 deletion Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void ChowAudioProcessor::parameterValueChanged (int paramIndex, float /*newValue
if (floatParam != nullptr)
{
if (Slider* slider = editor->getSliderForParam (floatParam))
slider->setValue (dynamic_cast<AudioParameterFloat*> (getParameters()[paramIndex])->get());
slider->setValue (dynamic_cast<AudioParameterFloat*> (getParameters()[paramIndex])->get(), dontSendNotification);
return;
}

Expand Down

0 comments on commit a4cc164

Please sign in to comment.