1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 23:51:18 +01:00

Bug829: Only the clips that really moved vertically should change their rate

This commit is contained in:
Paul Licameli
2015-08-08 18:16:48 -04:00
parent 17e3bf7b09
commit 17bfd6cfde
2 changed files with 19 additions and 18 deletions

View File

@@ -30,8 +30,9 @@ class ZoomInfo;
class TrackClip
{
public:
TrackClip(Track *t, WaveClip *c) { track = t; clip = c; }
TrackClip(Track *t, WaveClip *c) { track = origTrack = t; clip = c; }
Track *track;
Track *origTrack;
WaveClip *clip;
};