-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add additional BPM control options for more precise adjustments #12941
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change the description as suggested, then amend the commit to #12934 in order to have all related changes in one place
@@ -243,6 +243,12 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent) | |||
addDeckAndSamplerControl("bpm_up_small", tr("BPM +0.1"), tr("Increase BPM by 0.1"), pBpmMenu); | |||
addDeckAndSamplerControl("bpm_down_small", tr("BPM -0.1"), tr("Decrease BPM by 0.1"), pBpmMenu); | |||
addDeckAndSamplerControl("bpm_tap", tr("BPM Tap"), tr("BPM tap button"), pBpmMenu); | |||
addDeckAndSamplerControl("beats_set_halve", tr("BPM Halve"), tr("BPM halve"), pBpmMenu); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addDeckAndSamplerControl("beats_set_halve", tr("BPM Halve"), tr("BPM halve"), pBpmMenu); | |
addDeckAndSamplerControl("beats_set_halve", tr("BPM Halve"), tr("Multiply current BPM with 0.5"), pBpmMenu); |
etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taking a second look, I think it would be better to have the actions descried like the occur in the track menu
halve - 2/3 - 3/4 - 4/3 - 3/2 - double
mixxx/src/widget/wtrackmenu.cpp
Line 454 in 3aa73fd
m_pBpmHalveAction = new QAction(tr("Halve BPM"), m_pBPMMenu); |
@@ -243,6 +243,12 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent) | |||
addDeckAndSamplerControl("bpm_up_small", tr("BPM +0.1"), tr("Increase BPM by 0.1"), pBpmMenu); | |||
addDeckAndSamplerControl("bpm_down_small", tr("BPM -0.1"), tr("Decrease BPM by 0.1"), pBpmMenu); | |||
addDeckAndSamplerControl("bpm_tap", tr("BPM Tap"), tr("BPM tap button"), pBpmMenu); | |||
addDeckAndSamplerControl("beats_set_halve", tr("BPM Halve"), tr("BPM halve"), pBpmMenu); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taking a second look, I think it would be better to have the actions descried like the occur in the track menu
halve - 2/3 - 3/4 - 4/3 - 3/2 - double
mixxx/src/widget/wtrackmenu.cpp
Line 454 in 3aa73fd
m_pBpmHalveAction = new QAction(tr("Halve BPM"), m_pBPMMenu); |
Integrated into #12934 |
Depends on #12934