Skip to content

Commit

Permalink
Activated Auto-close progress dialog on post-processing
Browse files Browse the repository at this point in the history
  • Loading branch information
matlabbe committed Aug 15, 2015
1 parent 25822bc commit ea8a188
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion guilib/src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3321,7 +3321,7 @@ void MainWindow::postProcessing()
return;
}

_initProgressDialog->setAutoClose(false, 1);
_initProgressDialog->setAutoClose(true, 1);
_initProgressDialog->resetProgress();
_initProgressDialog->clear();
_initProgressDialog->show();
Expand Down Expand Up @@ -3708,6 +3708,7 @@ void MainWindow::postProcessing()
else
{
_initProgressDialog->appendText(tr("SBA... failed!"));
_initProgressDialog->setAutoClose(false, 1);
}
_initProgressDialog->incrementStep();
}
Expand Down

0 comments on commit ea8a188

Please sign in to comment.