From 22de0b75fbc50b2eb57f98b75506ea13b06c131b Mon Sep 17 00:00:00 2001 From: plenarius Date: Sat, 9 Jan 2021 02:28:18 -0500 Subject: [PATCH] Fix missing space between action verb and model name --- mainwindow_clean.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow_clean.cpp b/mainwindow_clean.cpp index 7c85b23..e53b869 100644 --- a/mainwindow_clean.cpp +++ b/mainwindow_clean.cpp @@ -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 = "

" % line % "


";