Skip to content

Commit

Permalink
feat: add additional BPM control options for more precise adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Milkii Brewster committed Mar 25, 2024
1 parent c7b5b9b commit 3f8ac55
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/controllers/controlpickermenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,27 +263,27 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
tr("BPM tap button"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_halve",
tr("BPM Halve"),
tr("Halve BPM"),
tr("Multiply current BPM by 0.5"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_twothirds",
tr("BPM Two Thirds"),
tr("2/3 BPM"),
tr("Multiply current BPM by 0.666"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_threefourths",
tr("BPM Three Fourths"),
tr("3/4 BPM"),
tr("Multiply current BPM by 0.75"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_fourthirds",
tr("BPM Four Thirds"),
tr("4/3 BPM"),
tr("Multiply current BPM by 1.333"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_threehalves",
tr("BPM Three Halves"),
tr("3/2 BPM"),
tr("Multiply current BPM by 1.5"),
pBpmMenu);
addDeckAndSamplerControl("beats_set_double",
tr("BPM Double"),
tr("Double BPM"),
tr("Multiply current BPM by 2"),
pBpmMenu);
pBpmMenu->addSeparator();
Expand Down

0 comments on commit 3f8ac55

Please sign in to comment.