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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user