1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-02 17:23:18 +02:00

Fix progress dialog for export of FLAC

This commit is contained in:
Paul Licameli 2017-11-27 21:17:41 -05:00
parent b69a272ad9
commit 653fa2d354

View File

@ -364,10 +364,11 @@ ProgressResult ExportFLAC::Export(AudacityProject *project,
updateResult = ProgressResult::Cancelled;
break;
}
if (updateResult == ProgressResult::Success)
updateResult =
progress.Update(mixer->MixGetCurrentTime() - t0, t1 - t0);
}
}
if (updateResult == ProgressResult::Success)
updateResult = progress.Update(mixer->MixGetCurrentTime() - t0, t1 - t0);
return updateResult;
}