From ed4ea1377bdb2db3b55e44a9bf4690198f1b6520 Mon Sep 17 00:00:00 2001 From: Jeremy Borgman Date: Mon, 7 Sep 2020 10:10:35 -0500 Subject: [PATCH] Changed menu item to match window title --- src/core/controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/controller.cpp b/src/core/controller.cpp index 5d6438f4..e8ec5bf6 100644 --- a/src/core/controller.cpp +++ b/src/core/controller.cpp @@ -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);