We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c660aa commit 179410aCopy full SHA for 179410a
1 file changed
FEBioStudio/menuFEBio.cpp
@@ -593,7 +593,8 @@ void CMainWindow::RunOptimizationStudy(COptimizationStudy* study)
593
CDlgStartThread dlg(this, new RunStudyThread(study));
594
if (dlg.exec())
595
{
596
- QMessageBox::warning(this, "FEBio Studio", "The study completed successfully.");
+ QString msg = QString("The study \"%1\" completed successfully.").arg(name);
597
+ QMessageBox::information(this, "FEBio Studio", msg);
598
599
QString outfile = study->GetOutputFileName();
600
if (!outfile.isEmpty())
0 commit comments