1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-29 22:58:39 +02:00

Bug1299: Shouldn't lose track focus after applying a chain.

This commit is contained in:
Paul Licameli 2016-01-26 20:49:59 -05:00
parent 907c950a0e
commit a44ff801a6

View File

@ -6423,7 +6423,8 @@ void AudacityProject::OnEditLabels()
void AudacityProject::OnApplyChain()
{
BatchProcessDialog dlg(this);
// Bug1299: Make Track panel the parent so it gets focus back
BatchProcessDialog dlg(GetTrackPanel());
dlg.ShowModal();
ModifyUndoMenuItems();
}