1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-22 23:30:07 +02:00

Fix indentations

This commit is contained in:
Paul Licameli 2020-01-30 11:01:07 -05:00
parent a84da3dee1
commit 6b551d10c5
12 changed files with 1000 additions and 1007 deletions

View File

@ -1157,7 +1157,6 @@ MenuTable::BaseItemSharedPtr EditMenu()
Command( wxT("Preferences"), XXO("Pre&ferences..."), FN(OnPreferences),
AudioIONotBusyFlag(), prefKey )
)
) ) };

View File

@ -610,7 +610,6 @@ MenuTable::BaseItemSharedPtr LabelEditMenus()
),
Section( "",
Command( wxT("AddLabel"), XXO("Add Label at &Selection"),
FN(OnAddLabel), AlwaysEnabledFlag, wxT("Ctrl+B") ),
Command( wxT("AddLabelPlaying"),
@ -625,7 +624,6 @@ MenuTable::BaseItemSharedPtr LabelEditMenus()
Command( wxT("PasteNewLabel"), XXO("Paste Te&xt to New Label"),
FN(OnPasteNewLabel),
AudioIONotBusyFlag(), wxT("Ctrl+Alt+V") )
),
Section( "",
@ -651,7 +649,6 @@ MenuTable::BaseItemSharedPtr LabelEditMenus()
),
Section( "",
/* i18n-hint: (verb) A special way to cut out a piece of audio*/
Command( wxT("SplitCutLabels"), XXO("&Split Cut"),
FN(OnSplitCutLabels), NotBusyLabelsAndWaveFlags,
@ -659,11 +656,9 @@ MenuTable::BaseItemSharedPtr LabelEditMenus()
Command( wxT("SplitDeleteLabels"), XXO("Sp&lit Delete"),
FN(OnSplitDeleteLabels), NotBusyLabelsAndWaveFlags,
Options{ wxT("Alt+Shift+K"), XO("Label Split Delete") } )
),
Section( "",
Command( wxT("SilenceLabels"), XXO("Silence &Audio"),
FN(OnSilenceLabels), NotBusyLabelsAndWaveFlags,
Options{ wxT("Alt+L"), XO("Label Silence") } ),

View File

@ -830,7 +830,6 @@ MenuTable::BaseItemSharedPtr EffectMenu()
IsRealtimeNotActiveFlag() )
); }
)
) ) };
return menu;
}