Skip to content

Commit

Permalink
Fix meter display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryuhoo committed May 22, 2024
1 parent 62b0ea3 commit e97aed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Panels/ControlPanel/Graph Components/VUMeter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ VUMeter::VUMeter(FireAudioProcessor* inProcessor)
mCh1Level(0)
{
setInterceptsMouseClicks(false, false);
startTimerHz(60);
}

VUMeter::~VUMeter()
Expand Down Expand Up @@ -79,7 +80,6 @@ void VUMeter::setParameters(bool isInput, juce::String meterName)
{
mIsInput = isInput;
mMeterName = meterName;
startTimerHz(30);
}

void VUMeter::timerCallback()
Expand Down

0 comments on commit e97aed6

Please sign in to comment.