Skip to content

Commit

Permalink
Fix for Qt 5 names for actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
shakes76 committed Oct 29, 2019
1 parent ea8feb2 commit e2a1f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Qt/milxQtImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4308,7 +4308,7 @@ void milxQtImage::createActions()
invertAct->setText(tr("Invert Intensities", 0));
invertAct->setShortcut(tr("Alt+v"));
projectAct = new QAction(this);
projectAct->setText(QApplication::translate("Image", "Maximum Intensity Projection", 0, QApplication::UnicodeUTF8));
projectAct->setText(tr("Maximum Intensity Projection", 0));
projectAct->setShortcut(tr("Alt+p"));
relabelAct = new QAction(this);
relabelAct->setText(tr("Relabel", 0));
Expand Down

0 comments on commit e2a1f9b

Please sign in to comment.