1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

Bug 1844 - Nyquist effects move subsequent envelope points by selection's length

Also renamed Envelop::Paste to Envelope::PasteEnvelope, since it was hard to find
just its usages, given the many usages of WaveTrack::Paste.
This commit is contained in:
James Crook
2018-08-07 10:39:18 +01:00
parent 511b810fdc
commit 0022e0c06c
4 changed files with 15 additions and 6 deletions

View File

@@ -124,7 +124,7 @@ void TimeTrack::Paste(double t, const Track * src)
return;
auto sampleTime = 1.0 / GetActiveProject()->GetRate();
mEnvelope->Paste
mEnvelope->PasteEnvelope
(t, static_cast<const TimeTrack*>(src)->mEnvelope.get(), sampleTime);
}