1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Bug 2616 - Labelled Audio Cut and Delete disabled by Sync-Lock

This is only for information gathering. I don't believe that
simply allowing the use of these two menu items is sufficient.
I believe more work will need to be done, but I wanted to get
it in the QA hands.
This commit is contained in:
Leland Lucius 2021-01-16 02:26:35 -06:00
parent 549dacf054
commit 086cacad76

View File

@ -639,11 +639,11 @@ BaseItemSharedPtr LabelEditMenus()
/* i18n-hint: (verb)*/
Command( wxT("CutLabels"), XXO("&Cut"), FN(OnCutLabels),
AudioIONotBusyFlag() | LabelsSelectedFlag() | WaveTracksExistFlag() |
TimeSelectedFlag() | IsNotSyncLockedFlag(),
TimeSelectedFlag(),
Options{ wxT("Alt+X"), XO("Label Cut") } ),
Command( wxT("DeleteLabels"), XXO("&Delete"), FN(OnDeleteLabels),
AudioIONotBusyFlag() | LabelsSelectedFlag() | WaveTracksExistFlag() |
TimeSelectedFlag() | IsNotSyncLockedFlag(),
TimeSelectedFlag(),
Options{ wxT("Alt+K"), XO("Label Delete") } )
),