Skip to content

Commit

Permalink
make function name consistent with UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatters1 committed Sep 19, 2024
1 parent 969accd commit a2edd6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/playback/view/playbacktoolbarmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void PlaybackToolBarModel::updateActions()
settingsItems << makeMenuItem(action.code);
}

settingsItems << makePitchMenu();
settingsItems << makeInputPitchMenu();
settingsItems << makeSeparator();

for (const UiAction& action : PlaybackUiActions::settingsActions()) {
Expand Down Expand Up @@ -139,7 +139,7 @@ void PlaybackToolBarModel::updateActions()
setItems(result);
}

MenuItem* PlaybackToolBarModel::makePitchMenu()
MenuItem* PlaybackToolBarModel::makeInputPitchMenu()
{
MenuItemList items;

Expand Down
2 changes: 1 addition & 1 deletion src/playback/view/playbacktoolbarmodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public slots:

private:
void setupConnections();
muse::uicomponents::MenuItem* makePitchMenu();
muse::uicomponents::MenuItem* makeInputPitchMenu();

void updateActions();
void onActionsStateChanges(const muse::actions::ActionCodeList& codes) override;
Expand Down

0 comments on commit a2edd6f

Please sign in to comment.