Display export progress starting with 1 / N.

This commit is contained in:
John Preston 2018-07-18 22:21:40 +03:00
parent 091d1157da
commit c48937a2f5
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ Content ContentFromState(const ProcessingState &state) {
}; };
const auto pushMain = [&](const QString &label) { const auto pushMain = [&](const QString &label) {
const auto info = (state.entityCount > 0) const auto info = (state.entityCount > 0)
? (QString::number(state.entityIndex) ? (QString::number(state.entityIndex + 1)
+ " / " + " / "
+ QString::number(state.entityCount)) + QString::number(state.entityCount))
: QString(); : QString();