Skip to content

Commit

Permalink
Merge pull request #3677 from daschuer/editBpm
Browse files Browse the repository at this point in the history
Fix bpm edit in the track preferences dialog
  • Loading branch information
uklotzde authored Mar 9, 2021
2 parents 99605cf + ba72538 commit f9a7f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/dlgtrackinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ void DlgTrackInfo::slotSpinBpmValueChanged(double value) {
}

if (m_pBeatsClone->getCapabilities() & mixxx::Beats::BEATSCAP_SETBPM) {
m_pBeatsClone->setBpm(value);
m_pBeatsClone = m_pBeatsClone->setBpm(value);
}

// read back the actual value
Expand Down

0 comments on commit f9a7f03

Please sign in to comment.