diff --git a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp index 78067674e5ff..001b75c33bfa 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp @@ -64,9 +64,9 @@ AZ::SceneAPI::UI::ManifestWidget* ImporterRootDisplay::GetManifestWidget() void ImporterRootDisplay::SetSceneHeaderText(const QString& headerText) { QFileInfo fileInfo(headerText); - ui->m_filePathText->setText(tr("%1").arg(fileInfo.fileName())); - QString fullPath = tr("%1%2").arg(QDir::toNativeSeparators(fileInfo.path())).arg(QDir::separator()); - ui->m_fullPathText->setText(fullPath); + ui->m_filePathText->setText(QString("%1").arg(fileInfo.fileName())); + QString fullPath(QString("%1%2").arg(QDir::toNativeSeparators(fileInfo.path())).arg(QDir::separator())); + ui->m_fullPathText->setText(QString("%1").arg(fullPath)); ui->m_showInExplorer->setEnabled(true); ui->m_showInExplorer->disconnect();