Changed menu item to match window title

This commit is contained in:
Jeremy Borgman
2020-09-07 10:10:35 -05:00
committed by borgmanJeremy
parent fbdeccd065
commit ed4ea1377b

View File

@@ -210,7 +210,7 @@ Controller::enableTrayIcon()
QAction* configAction = new QAction(tr("&Configuration"), this);
connect(
configAction, &QAction::triggered, this, &Controller::openConfigWindow);
QAction* infoAction = new QAction(tr("&Information"), this);
QAction* infoAction = new QAction(tr("&About"), this);
connect(infoAction, &QAction::triggered, this, &Controller::openInfoWindow);
QAction* quitAction = new QAction(tr("&Quit"), this);
connect(quitAction, &QAction::triggered, qApp, &QCoreApplication::quit);