Skip to content

Commit

Permalink
Decapitalize m in Pitch Bend Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonymouqs committed Feb 27, 2018
1 parent 37c5fdf commit 1f8a502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/editors/PianoRoll.cpp
Expand Up @@ -4077,7 +4077,7 @@ PianoRollWindow::PianoRollWindow() :
QAction* drawAction = editModeGroup->addAction( embed::getIconPixmap( "edit_draw" ), tr( "Draw mode (Shift+D)" ) );
QAction* eraseAction = editModeGroup->addAction( embed::getIconPixmap( "edit_erase" ), tr("Erase mode (Shift+E)" ) );
QAction* selectAction = editModeGroup->addAction( embed::getIconPixmap( "edit_select" ), tr( "Select mode (Shift+S)" ) );
QAction* pitchBendAction = editModeGroup->addAction( embed::getIconPixmap( "automation" ), tr("Pitch Bend Mode (Shift+T)" ) );
QAction* pitchBendAction = editModeGroup->addAction( embed::getIconPixmap( "automation" ), tr("Pitch Bend mode (Shift+T)" ) );

drawAction->setChecked( true );

Expand Down Expand Up @@ -4113,7 +4113,7 @@ PianoRollWindow::PianoRollWindow() :
"Ctrl" ) );
#endif
pitchBendAction->setWhatsThis(
tr( "Click here and Pitch Bend Mode will be activated. "
tr( "Click here and Pitch Bend mode will be activated. "
"In this mode you can click a note to open its "
"automation detuning. You can utilize this to slide "
"notes from one to another. You can also press "
Expand Down

0 comments on commit 1f8a502

Please sign in to comment.