1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 22:12:58 +02:00

NoteTrack: Implement Silence and InsertSilence

Additionally, fix the UI portions of these, and fix Trim for note tracks
(the code already existed, but due to flags would not work).  As PRL
requested, this is gated only behind USE_MIDI.
This commit is contained in:
Pokechu22
2017-04-11 12:02:16 -07:00
committed by Paul Licameli
parent e707f6a263
commit 298bb3fde8
3 changed files with 31 additions and 11 deletions

View File

@@ -55,6 +55,7 @@ enum CommandFlag : unsigned long long
NotPausedFlag = 0x400000000ULL, // jkc
HasWaveDataFlag = 0x800000000ULL, // jkc
PlayableTracksExistFlag = 0x1000000000ULL,
AudioTracksSelectedFlag = 0x2000000000ULL,
NoFlagsSpecifed = ~0ULL
};