LYN-4547 prepending O3DE to the material editor application name
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user