JAL-3446 removing mouse button test debug
authorBobHanson <hansonr@stolaf.edu>
Fri, 12 Jun 2020 08:45:06 +0000 (03:45 -0500)
committerBobHanson <hansonr@stolaf.edu>
Fri, 12 Jun 2020 08:45:06 +0000 (03:45 -0500)
src/jalview/util/Platform.java

index e4ed14f..62f618a 100644 (file)
@@ -238,10 +238,10 @@ public class Platform
    */
   protected static boolean isControlDown(MouseEvent e, boolean aMac)
   {
-
-    System.out.println(e.isPopupTrigger() 
-            + " " + ((SHORTCUT_KEY_MASK & e.getModifiersEx()) != 0) 
-            + " " + e.isControlDown());
+//
+//    System.out.println(e.isPopupTrigger() 
+//            + " " + ((SHORTCUT_KEY_MASK & e.getModifiersEx()) != 0) 
+//            + " " + e.isControlDown());
     return (aMac ? !e.isPopupTrigger()
             && (SHORTCUT_KEY_MASK & e.getModifiersEx()) != 0
             : e.isControlDown());