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

Fix: Simplified View option greying-out now no longer selection-sensitive.

This commit is contained in:
james.k.crook@gmail.com 2013-09-27 19:12:29 +00:00
parent c980a6bdb4
commit 6f35b25e31

View File

@ -624,7 +624,7 @@ void AudacityProject::CreateMenusAndCommands()
* simplified view with hidden menu items, then leave the ! out here, so that the * simplified view with hidden menu items, then leave the ! out here, so that the
* user can show/hide some of the menu items. */ * user can show/hide some of the menu items. */
c->AddCheck(wxT("SimplifiedView"), _("!Simplified View"), FN(OnSimplifiedView), c->AddCheck(wxT("SimplifiedView"), _("!Simplified View"), FN(OnSimplifiedView),
mCommandManager.mbHideFlaggedItems ? 1 : 0); mCommandManager.mbHideFlaggedItems ? 1 : 0, AlwaysEnabledFlag, AlwaysEnabledFlag);
c->EndMenu(); c->EndMenu();