Skip to content

Commit 179410a

Browse files
committed
Updated message when study completes.
1 parent 8c660aa commit 179410a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

FEBioStudio/menuFEBio.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,8 @@ void CMainWindow::RunOptimizationStudy(COptimizationStudy* study)
593593
CDlgStartThread dlg(this, new RunStudyThread(study));
594594
if (dlg.exec())
595595
{
596-
QMessageBox::warning(this, "FEBio Studio", "The study completed successfully.");
596+
QString msg = QString("The study \"%1\" completed successfully.").arg(name);
597+
QMessageBox::information(this, "FEBio Studio", msg);
597598

598599
QString outfile = study->GetOutputFileName();
599600
if (!outfile.isEmpty())

0 commit comments

Comments
 (0)