mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-07 23:32:53 +02:00
Move more on/off options lower in menus.
This commit is contained in:
parent
715da2b533
commit
c1592d2a1a
@ -718,11 +718,6 @@ void AudacityProject::CreateMenusAndCommands()
|
|||||||
|
|
||||||
c->AddSeparator();
|
c->AddSeparator();
|
||||||
|
|
||||||
c->AddCheck(wxT("ShowClipping"), _("&Show Clipping"), FN(OnShowClipping),
|
|
||||||
gPrefs->Read(wxT("/GUI/ShowClipping"), 0L), AlwaysEnabledFlag, AlwaysEnabledFlag);
|
|
||||||
|
|
||||||
c->AddSeparator();
|
|
||||||
|
|
||||||
// History window should be available either for UndoAvailableFlag or RedoAvailableFlag,
|
// History window should be available either for UndoAvailableFlag or RedoAvailableFlag,
|
||||||
// but we can't make the AddItem flags and mask have both, because they'd both have to be true for the
|
// but we can't make the AddItem flags and mask have both, because they'd both have to be true for the
|
||||||
// command to be enabled.
|
// command to be enabled.
|
||||||
@ -792,6 +787,12 @@ void AudacityProject::CreateMenusAndCommands()
|
|||||||
|
|
||||||
c->EndSubMenu();
|
c->EndSubMenu();
|
||||||
|
|
||||||
|
c->AddSeparator();
|
||||||
|
|
||||||
|
c->AddCheck(wxT("ShowClipping"), _("&Show Clipping (on/off)"), FN(OnShowClipping),
|
||||||
|
gPrefs->Read(wxT("/GUI/ShowClipping"), 0L), AlwaysEnabledFlag, AlwaysEnabledFlag);
|
||||||
|
|
||||||
|
|
||||||
c->EndMenu();
|
c->EndMenu();
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
@ -874,6 +875,8 @@ void AudacityProject::CreateMenusAndCommands()
|
|||||||
|
|
||||||
c->AddSeparator();
|
c->AddSeparator();
|
||||||
|
|
||||||
|
c->AddItem(wxT("RescanDevices"), _("R&escan Audio Devices"), FN(OnRescanDevices));
|
||||||
|
|
||||||
c->BeginSubMenu(_("Transport Options"));
|
c->BeginSubMenu(_("Transport Options"));
|
||||||
// Sound Activated recording options
|
// Sound Activated recording options
|
||||||
c->AddItem(wxT("SoundActivationLevel"), _("Sound Activation Le&vel..."), FN(OnSoundActivated));
|
c->AddItem(wxT("SoundActivationLevel"), _("Sound Activation Le&vel..."), FN(OnSoundActivated));
|
||||||
@ -893,7 +896,6 @@ void AudacityProject::CreateMenusAndCommands()
|
|||||||
c->AddCheck(wxT("AutomatedInputLevelAdjustmentOnOff"), _("A&utomated Recording Level Adjustment (on/off)"), FN(OnToggleAutomatedInputLevelAdjustment), 0);
|
c->AddCheck(wxT("AutomatedInputLevelAdjustmentOnOff"), _("A&utomated Recording Level Adjustment (on/off)"), FN(OnToggleAutomatedInputLevelAdjustment), 0);
|
||||||
#endif
|
#endif
|
||||||
c->EndSubMenu();
|
c->EndSubMenu();
|
||||||
c->AddItem(wxT("RescanDevices"), _("R&escan Audio Devices"), FN(OnRescanDevices));
|
|
||||||
|
|
||||||
c->EndMenu();
|
c->EndMenu();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user