|
@@ -64,9 +64,9 @@ AZ::SceneAPI::UI::ManifestWidget* ImporterRootDisplay::GetManifestWidget()
|
|
|
void ImporterRootDisplay::SetSceneHeaderText(const QString& headerText)
|
|
|
{
|
|
|
QFileInfo fileInfo(headerText);
|
|
|
- ui->m_filePathText->setText(tr("<b>%1</b>").arg(fileInfo.fileName()));
|
|
|
- QString fullPath = tr("<b>%1%2</b>").arg(QDir::toNativeSeparators(fileInfo.path())).arg(QDir::separator());
|
|
|
- ui->m_fullPathText->setText(fullPath);
|
|
|
+ ui->m_filePathText->setText(QString("<b>%1</b>").arg(fileInfo.fileName()));
|
|
|
+ QString fullPath(QString("%1%2").arg(QDir::toNativeSeparators(fileInfo.path())).arg(QDir::separator()));
|
|
|
+ ui->m_fullPathText->setText(QString("<b>%1</b>").arg(fullPath));
|
|
|
|
|
|
ui->m_showInExplorer->setEnabled(true);
|
|
|
ui->m_showInExplorer->disconnect();
|