13
0

Stop export dialog from getting stuck at end of export

git-svn-id: svn://localhost/ardour2/branches/3.0@3911 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen 2008-10-10 21:46:47 +00:00
parent 78c21c3475
commit f31179a490

View File

@ -56,6 +56,7 @@ ExportStatus::abort (bool error_occurred)
_aborted = true;
_finished = true;
_errors = _errors || error_occurred;
running = false;
Aborting ();
}
@ -63,6 +64,7 @@ void
ExportStatus::finish ()
{
_finished = true;
running = false;
Finished();
}