diff --git a/ground/openpilotgcs/src/plugins/coreplugin/coreplugin.pro b/ground/openpilotgcs/src/plugins/coreplugin/coreplugin.pro index 014bfdb57..e147398c1 100644 --- a/ground/openpilotgcs/src/plugins/coreplugin/coreplugin.pro +++ b/ground/openpilotgcs/src/plugins/coreplugin/coreplugin.pro @@ -1,7 +1,8 @@ TEMPLATE = lib TARGET = Core DEFINES += CORE_LIBRARY - +DEFINES += ORG_BIG_NAME=$$shell_quote(\"$$ORG_BIG_NAME\") + QT += qml \ quick \ xml \ diff --git a/ground/openpilotgcs/src/plugins/coreplugin/mainwindow.cpp b/ground/openpilotgcs/src/plugins/coreplugin/mainwindow.cpp index 7c09ac60c..544f15520 100644 --- a/ground/openpilotgcs/src/plugins/coreplugin/mainwindow.cpp +++ b/ground/openpilotgcs/src/plugins/coreplugin/mainwindow.cpp @@ -747,7 +747,7 @@ void MainWindow::registerDefaultActions() connect(tmpaction, SIGNAL(triggered()), this, SLOT(aboutPlugins())); // Credits Action - tmpaction = new QAction(QIcon(Constants::ICON_PLUGIN), tr("About &OpenPilot..."), this); + tmpaction = new QAction(QIcon(Constants::ICON_PLUGIN), tr("About &%1...").arg(ORG_BIG_NAME), this); cmd = am->registerAction(tmpaction, Constants::ABOUT_AUTHORS, m_globalContext); mhelp->addAction(cmd, Constants::G_HELP_ABOUT); tmpaction->setEnabled(true);