From 912ad6b2decd3d06a1a6f55ef1db0fc7bd127d53 Mon Sep 17 00:00:00 2001 From: BobHanson Date: Fri, 12 Jun 2020 03:45:06 -0500 Subject: [PATCH] JAL-3446 removing mouse button test debug --- src/jalview/util/Platform.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jalview/util/Platform.java b/src/jalview/util/Platform.java index e4ed14f..62f618a 100644 --- a/src/jalview/util/Platform.java +++ b/src/jalview/util/Platform.java @@ -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()); -- 1.7.10.2