1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 07:31:19 +01:00

Simplification and better comments relating to time-shift...

... fewer switches on USE_MIDI.  In fact capturedClipArray is nonempty
whenever capturedClip is not null.
This commit is contained in:
Paul Licameli
2018-09-22 14:36:52 -04:00
parent 4a55b0d0cc
commit b79f5d9291
2 changed files with 99 additions and 147 deletions

View File

@@ -40,8 +40,10 @@ public:
Track *track;
Track *origTrack;
WaveTrack *dstTrack;
WaveClip *clip;
// These fields are used only during time-shift dragging
WaveTrack *dstTrack;
std::shared_ptr<WaveClip> holder;
};