mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 14:13:57 +01:00
Correct the argument passed to OnEffect by EffectRack
This commit is contained in:
@@ -293,7 +293,8 @@ void EffectRack::OnApply(wxCommandEvent & WXUNUSED(evt))
|
|||||||
{
|
{
|
||||||
if (mPowerState[i])
|
if (mPowerState[i])
|
||||||
{
|
{
|
||||||
project->OnEffect(mEffects[i]->GetID(), true);
|
project->OnEffect(mEffects[i]->GetID(),
|
||||||
|
AudacityProject::OnEffectFlags::kConfigured);
|
||||||
|
|
||||||
mPowerState[i] = false;
|
mPowerState[i] = false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user