Update of /cvsroot/audacity/audacity-src/src
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25881/src

Modified Files:
        Menus.cpp 
Log Message:
Remove shortcut from Play and Stop menu items and reinstate the PlayStop toggle.

Index: Menus.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Menus.cpp,v
retrieving revision 1.466
retrieving revision 1.467
diff -u -d -r1.466 -r1.467
--- Menus.cpp   6 Apr 2009 23:21:04 -0000       1.466
+++ Menus.cpp   7 Apr 2009 04:53:39 -0000       1.467
@@ -594,12 +594,12 @@
    play, record, pause etc. */
    c->BeginMenu(_("T&ransport"));
    c->SetDefaultFlags(0, 0);
-      c->AddItem(wxT("Play"), _("Play\tSpace\tallowdup"), FN(OnPlayStop));
+      c->AddItem(wxT("Play"), _("Play"), FN(OnPlayStop));
       c->SetCommandFlags(wxT("Play"), AudioIONotBusyFlag, AudioIONotBusyFlag);
       c->AddItem(wxT("PlayLooped"), _("&Loop Play\tShift+Space"), 
FN(OnPlayLooped));
       c->SetCommandFlags(wxT("PlayLooped"), AudioIONotBusyFlag, 
AudioIONotBusyFlag);
       c->AddItem(wxT("Pause"), _("&Pause\tP"), FN(OnPause));
-      c->AddItem(wxT("Stop"), _("&Stop\tSpace\tallowdup"), FN(OnStop));
+      c->AddItem(wxT("Stop"), _("&Stop"), FN(OnStop));
       c->AddItem(wxT("SkipStart"), _("Skip to Start\tHome"), FN(OnSkipStart));
       c->SetCommandFlags(wxT("SkipStart"), AudioIONotBusyFlag, 
AudioIONotBusyFlag);
       c->AddItem(wxT("SkipEnd"), _("Skip to End\tEnd"), FN(OnSkipEnd));
@@ -994,6 +994,8 @@
    c->AddCommand(wxT("NextTool"),   _("Next Tool\tD"),                 
FN(OnNextTool));
    c->AddCommand(wxT("PrevTool"),   _("Previous Tool\tA"),             
FN(OnPrevTool));
 
+   c->AddCommand(wxT("PlayStop"),    _("Play/Stop\tSpace"),            
FN(OnPlayStop));
+
    c->AddCommand(wxT("PlayStopSelect"),  _("Play/Stop and Set 
Cursor\tShift+A"),    FN(OnPlayStopSelect));
 
    c->AddCommand(wxT("PlayOneSec"),     _("Play One Second\t1"),       
FN(OnPlayOneSecond));
@@ -1025,7 +1027,7 @@
    c->AddCommand(wxT("ShiftUp"),       _("Move Focus to Previous and 
Select\tShift+Up"), FN(OnShiftUp));
    c->AddCommand(wxT("NextTrack"),     _("Move Focus to Next Track\tDown"),    
                    FN(OnCursorDown));
    c->AddCommand(wxT("ShiftDown"),     _("Move Focus to Next and 
Select\tShift+Down"),   FN(OnShiftDown));
-   c->AddCommand(wxT("Toggle"),        _("Toggle Focused Track\tReturn"),      
                    FN(OnToggle));
+   c->AddCommand(wxT("Toggle"),        _("Toggle Focused Track\tReturn"),      
              FN(OnToggle));
 
    c->AddCommand(wxT("CursorLeft"),           _("Cursor 
Left\tLeft\tallowdup"),              FN(OnCursorLeft));
    c->AddCommand(wxT("CursorRight"),          _("Cursor 
Right\tRight\tallowdup"),            FN(OnCursorRight));


------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to