Move the show log text to be part of building label.

Signed-off-by: AMZN-Phil <pconroy@amazon.com>
This commit is contained in:
AMZN-Phil
2021-07-09 14:12:31 -07:00
parent 443e8071e7
commit b92848ed88
3 changed files with 6 additions and 11 deletions
@@ -70,9 +70,9 @@ namespace O3DE::ProjectManager
m_lastProgress = progress;
if (m_projectButton)
{
m_projectButton->SetButtonOverlayText(QString("%1 (%2%)\n\n").arg(tr("Building Project..."), QString::number(progress)));
m_projectButton->SetButtonOverlayText(QString("%1 (%2%)<br>%3<br>").arg(tr("Building Project..."), QString::number(progress), tr("Click to <a href=\"logs\">view logs</a>.")));
m_projectButton->SetProgressBarValue(progress);
m_projectButton->ShowBuildLogsLink(true, m_worker->GetLogFilePath());
m_projectButton->SetBuildLogsLink(m_worker->GetLogFilePath());
}
}