1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-25 15:53:52 +02:00

Bug 1793: Applying chain to files should zoom-to-fit

This commit is contained in:
Paul Licameli
2017-12-30 14:13:31 -05:00
parent 37ec3b52c7
commit 0c8890cda1

View File

@@ -361,6 +361,7 @@ void BatchProcessDialog::OnApplyToFiles(wxCommandEvent & WXUNUSED(event))
auto success = GuardedCall< bool >( [&] { auto success = GuardedCall< bool >( [&] {
project->Import(files[i]); project->Import(files[i]);
project->ZoomAfterImport(nullptr);
project->OnSelectAll(); project->OnSelectAll();
if (!mBatchCommands.ApplyChain()) if (!mBatchCommands.ApplyChain())
return false; return false;