Fix confusion about the 'done' variable in InterThreadInfo during import. 'done' now means that a given run of the import thread has completed; 'all_done' means that the whole import operation has completed. Fixes #3396.

git-svn-id: svn://localhost/ardour2/branches/3.0@7862 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2010-09-29 22:59:39 +00:00
parent ee54123470
commit 74c69114bc
3 changed files with 10 additions and 5 deletions

View File

@@ -100,6 +100,6 @@ ImportProgressWindow::update ()
}
_bar.set_text (string_compose (_("Importing file: %1 of %2"), c, _import_status->total));
return !(_import_status->done || _import_status->cancel);
return !(_import_status->all_done || _import_status->cancel);
}