remove debug for percentage in DomainBakeWidget

This commit is contained in:
Stephen Birarda 2017-04-17 09:51:59 -07:00
parent 1798a058da
commit 3388debe9f

View file

@ -241,7 +241,6 @@ void DomainBakeWidget::handleBakerProgress(int modelsBaked, int modelsTotal) {
auto resultsWindow = qApp->getMainWindow()->showResultsWindow();
int percentage = roundf(float(modelsBaked) / float(modelsTotal) * 100.0f);
qDebug() << percentage;
auto statusString = QString("Baking - %1 of %2 models baked - %3%").arg(modelsBaked).arg(modelsTotal).arg(percentage);
resultsWindow->changeStatusForRow(resultRow, statusString);