1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 00:29:41 +02:00

Bug 2096: High quality stretching in Change Pitch/Tempo ...

... should Preview properly and not change the selection (even temporarily)
This commit is contained in:
Paul Licameli 2019-04-22 10:57:14 -04:00
parent 9eb408db56
commit 8d489b9c6f

View File

@ -1291,8 +1291,10 @@ bool Effect::DoEffect(wxWindow *parent,
bool Effect::Delegate( Effect &delegate, wxWindow *parent, bool shouldPrompt)
{
SelectedRegion region{ mT0, mT1 };
return delegate.DoEffect( parent, mProjectRate, mTracks, mFactory,
mpSelectedRegion, shouldPrompt );
&region, shouldPrompt );
}
// All legacy effects should have this overridden