Skip to content

Commit

Permalink
Fix missing space between action verb and model name
Browse files Browse the repository at this point in the history
  • Loading branch information
plenarius committed Jan 9, 2021
1 parent 7dd4999 commit 22de0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mainwindow_clean.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void MainWindow::onCaptureCleanModelsOutput()
pos = rx_mdl.indexIn(line);
if (pos > -1)
{
sStatus = tr(actionVerbPresent.toStdString().c_str()) % m_sCurrentModel;
sStatus = tr(actionVerbPresent.toStdString().c_str()) % " " % m_sCurrentModel;
m_pCleanStatus->setText(sStatus);
m_pStatusProgress->setVisible(true);
outputHtml = "<p><span style=\"color:blue;\"><b>" % line % "</b></span></p><br>";
Expand Down

0 comments on commit 22de0b7

Please sign in to comment.