Skip to content

Commit

Permalink
Rename stereo pan law in egxvca menu
Browse files Browse the repository at this point in the history
Closes #873
  • Loading branch information
baconpaul committed May 21, 2023
1 parent 7929a65 commit cb983a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/EGxVCA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct EGxVCAWidget : public widgets::XTModuleWidget

menu->addChild(new rack::ui::MenuSeparator);
addSelectionMenu(menu, module->paramQuantities[M::STEREO_PAN_LAW],
{{"Stereo Equal Power Panning", 0}, {"Stereo True Panning", 1}});
{{"Stereo Pan: Balance", 0}, {"Stereo Pan: True Panning", 1}});
}

widgets::DirtyHelper<EGxVCA, false> modeDirty, analogDigitalDirty;
Expand Down
2 changes: 1 addition & 1 deletion src/EGxVCA.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ struct EGxVCA : modules::XTModule
configSwitch(FAST_OR_SLOW, 0, 1, 0, "Fast or Slow", {"Fast", "Slow"})->randomizeEnabled =
false;
configSwitch(STEREO_PAN_LAW, EQUAL_POWER, TRUE_PANNING, EQUAL_POWER, "Stereo Pan Law",
{"Equal Power", "True Panning"})
{"Stereo Balance", "Stereo Pan"})
->randomizeEnabled = false;

modAssist.initialize(this);
Expand Down

0 comments on commit cb983a9

Please sign in to comment.