1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-27 15:08:39 +01:00

EXPERIMENTAL_MIDI_STRETCHING off for 2.2.0

This commit is contained in:
James Crook
2017-08-17 17:24:14 +01:00
parent fc25ce093f
commit 69b77a8034
2 changed files with 9 additions and 1 deletions

View File

@@ -30,10 +30,12 @@ std::vector<UIHandlePtr> NoteTrack::DetailedHitTest
UIHandlePtr result;
std::vector<UIHandlePtr> results;
#ifdef USE_MIDI
#ifdef EXPERIMENTAL_MIDI_STRETCHING
result = StretchHandle::HitTest(
mStretchHandle, state, pProject, Pointer<NoteTrack>(this) );
if (result)
results.push_back(result);
#endif
#endif
return results;