Skip to content

Commit

Permalink
Merge pull request mixxxdj#12955 from ronso0/track-menu-reset-clear
Browse files Browse the repository at this point in the history
Track menu: rephrase "Reset" to "Clear"
  • Loading branch information
JoergAtGithub authored Mar 16, 2024
2 parents af7eaf6 + 042a78b commit e74e4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widget/wtrackmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void WTrackMenu::createMenus() {
if (featureIsEnabled(Feature::Reset)) {
m_pClearMetadataMenu = new QMenu(this);
//: Reset metadata in right click track context menu in library
m_pClearMetadataMenu->setTitle(tr("Reset"));
m_pClearMetadataMenu->setTitle(tr("Clear"));
}

if (featureIsEnabled(Feature::Analyze)) {
Expand Down Expand Up @@ -481,7 +481,7 @@ void WTrackMenu::createActions() {
slotScaleBpm(mixxx::Beats::BpmScale::ThreeHalves);
});

m_pBpmResetAction = new QAction(tr("Reset BPM"), m_pBPMMenu);
m_pBpmResetAction = new QAction(tr("Clear BPM and Beatgrid"), m_pBPMMenu);
connect(m_pBpmResetAction,
&QAction::triggered,
this,
Expand Down

0 comments on commit e74e4c4

Please sign in to comment.