1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-24 17:41:13 +01:00

Allow pausing and unpausing of scrub. Just treat it differently internally.

This commit is contained in:
Paul Licameli
2016-05-11 19:59:11 -04:00
parent 6d44d4e390
commit 737e24e24e
6 changed files with 37 additions and 32 deletions

View File

@@ -92,10 +92,10 @@ enum CommandFlag : unsigned long long
IsRealtimeNotActiveFlag= 0x10000000, //lll
CaptureNotBusyFlag = 0x20000000,
CanStopAudioStreamFlag = 0x40000000,
AudioStreamNotScrubbingFlag
= 0x80000000ULL, // prl
RulerHasFocus
= 0x100000000ULL, // prl
= 0x80000000ULL, // prl
// nextOneHas33BitsWow
// = 0x100000000ULL, // prl
NoFlagsSpecifed = ~0ULL
};