Skip to content

Commit

Permalink
chore: disable all bands by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mttbernardini committed May 7, 2024
1 parent 603c5d0 commit 12f0248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FrequalizerProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class FrequalizerAudioProcessor : public juce::AudioProcessor,
//==============================================================================
struct Band {
Band (const juce::String& nameToUse, juce::Colour colourToUse, FilterType typeToUse,
float frequencyToUse, float qualityToUse, float gainToUse=1.0f, bool shouldBeActive=true)
float frequencyToUse, float qualityToUse, float gainToUse=1.0f, bool shouldBeActive=false)
: name (nameToUse),
colour (colourToUse),
type (typeToUse),
Expand Down

0 comments on commit 12f0248

Please sign in to comment.