1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Revert "Bug 2215 - Cut does not work when in Pause mode"

This reverts commit 458d92157a4fccb2524971f607e28a6c73b1901f.

The fix caused another bug: when paused, with select all enabled, all audio was selected.
This commit is contained in:
David Bailes 2019-10-01 15:19:11 +01:00
parent 458d92157a
commit b06af2330b

View File

@ -661,7 +661,7 @@ bool MenuManager::TryToMakeActionAllowed(
(flags & actual) == actual
&&
// Can we get the condition we need?
(MissingFlags & enabler.possibleFlags()).any()
(MissingFlags & enabler.possibleFlags()) == MissingFlags
) {
// Then try the function
enabler.tryEnable( project, flagsRqd );