Skip to content

Commit

Permalink
fix #104981: synthesizer: zita1 reverb: Eq2 not working
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Apr 19, 2016
1 parent 0687477 commit cc3c9c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions effects/zita1/zita.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ static const std::vector<ParDescr> pd = {
{ R_EQ1FR, "eq1fr", true, logf(40.0), logf(2.5e3), 160.0 },
{ R_EQ1GN, "eq1gn", false, -15.0, 15.0, 0.0 },

{ R_EQ2FR, "eg2fr", true, logf(160.0), logf(10e3), 2.5e3 },
{ R_EQ2GN, "eg2gn", false, -15.0, 15.0, 0.0 },
{ R_EQ2FR, "eq2fr", true, logf(160.0), logf(10e3), 2.5e3 },
{ R_EQ2GN, "eq2gn", false, -15.0, 15.0, 0.0 },

{ R_OPMIX, "opmix", false, 0.0, 1.0, 0.5 }
};
Expand Down
2 changes: 1 addition & 1 deletion effects/zita1/zitagui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ void ZitaEffectGui::mouseMoveEvent(QMouseEvent* e)
else if (v > 1.0)
v = 1.0;
rotary[r].value = v;

valueChanged(rotary[r].id, v);
update();
}
Expand All @@ -148,6 +149,5 @@ void ZitaEffectGui::paintEvent(QPaintEvent*)
}
}


}

0 comments on commit cc3c9c7

Please sign in to comment.