1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-10 00:15:31 +01:00

Fix for bug 558

This commit is contained in:
Steve Daulton
2015-08-12 14:19:01 +01:00
parent 133b97feb6
commit 2cb32c763f
5 changed files with 33 additions and 17 deletions

View File

@@ -1233,8 +1233,8 @@ ProgressDialog::Update(int value, const wxString & message)
mLastValue = value;
}
// Only update if a full second has passed.
if (now - mLastUpdate > 1000)
// Only update if a full second has passed.or track progress is complete
if ((now - mLastUpdate > 1000) || (value == 1000))
{
wxTimeSpan tsElapsed(0, 0, 0, elapsed);
wxTimeSpan tsRemains(0, 0, 0, remains);