LYN-4547 prepending O3DE to the material editor application name

This commit is contained in:
guthadam
2021-06-16 23:37:43 -05:00
parent 1097cb7ce3
commit 7e231c8e36
2 changed files with 3 additions and 3 deletions
@@ -78,13 +78,13 @@ namespace MaterialEditor
AZ::Name apiName = AZ::RHI::Factory::Get().GetName();
if (!apiName.IsEmpty())
{
QString title = QString{ "Material Editor (%1)" }.arg(apiName.GetCStr());
QString title = QString{ "%1 (%2)" }.arg(QApplication::applicationName()).arg(apiName.GetCStr());
setWindowTitle(title);
}
else
{
AZ_Assert(false, "Render API name not found");
setWindowTitle("Material Editor");
setWindowTitle(QApplication::applicationName());
}
m_advancedDockManager = new AzQtComponents::FancyDocking(this);
@@ -31,7 +31,7 @@ int main(int argc, char** argv)
{
QApplication::setOrganizationName("Amazon");
QApplication::setOrganizationDomain("amazon.com");
QApplication::setApplicationName("MaterialEditor");
QApplication::setApplicationName("O3DE Material Editor");
AzQtComponents::PrepareQtPaths();