Update of /cvsroot/audacity/audacity-src/src
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv4398

Modified Files:
        TrackPanel.cpp 
Log Message:
Figured out what the ControlDown() was for...it is needed for Ctrl+Left 
click...fixed for Mac now.

Index: TrackPanel.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/TrackPanel.cpp,v
retrieving revision 1.366
retrieving revision 1.367
diff -u -d -r1.366 -r1.367
--- TrackPanel.cpp      29 Jul 2007 16:42:24 -0000      1.366
+++ TrackPanel.cpp      30 Jul 2007 01:28:52 -0000      1.367
@@ -1787,13 +1787,11 @@
 {
    // AS: If we're not in the process of selecting (set in
    //  the SelectionHandleClick above), fuhggeddaboudit.
-   if ( mMouseCapture!=IsSelecting)
+   if (mMouseCapture!=IsSelecting)
       return;
 
    // Also fuhggeddaboudit if we're not dragging and not autoscrolling.
-   //
-   // LL:  What's the ControlDown() for?
-   if ((!event.Dragging() && !mAutoScrolling)  || event.ControlDown())
+   if ((!event.Dragging() && !mAutoScrolling) || event.CmdDown())
       return;
 
    wxRect r      = mCapturedRect;


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to