1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-22 00:47:13 +01:00

Don't push effects that can't be undone onto the Undo Stack

This commit is contained in:
Steve Daulton
2015-12-30 16:56:30 +00:00
parent 159f0263f3
commit 1d6d08c47d
8 changed files with 50 additions and 6 deletions

View File

@@ -369,6 +369,8 @@ public:
static const int kConfigured = 0x01;
// Flag used to disable saving the state after processing.
static const int kSkipState = 0x02;
// Flag used to disable "Repeat Last Effect"
static const int kDontRepeatLast = 0x04;
};
bool OnEffect(const PluginID & ID, int flags = OnEffectFlags::kNone);