Cleanup "Clean-up", hide dialog before starting cleanup

This commit is contained in:
Robin Gareus 2019-04-07 18:51:50 +02:00
parent 58babb1e9b
commit 1557ea5314
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 6 deletions

View File

@ -4198,17 +4198,14 @@ Clean-up will move all unused files to a \"dead\" location."));
default:
return;
}
checker.hide();
ARDOUR::CleanupReport rep;
editor->prepare_for_cleanup ();
/* do not allow flush until a session is reloaded */
Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), X_("FlushWastebasket"));
if (act) {
act->set_sensitive (false);
}
ActionManager::get_action (X_("Main"), X_("FlushWastebasket"))->set_sensitive (false);
if (_session->cleanup_sources (rep)) {
editor->finish_cleanup ();
@ -4217,7 +4214,6 @@ Clean-up will move all unused files to a \"dead\" location."));
editor->finish_cleanup ();
checker.hide();
display_cleanup_results (rep, _("Cleaned Files"), false);
}