seq panel issue with shift-left-mouse drag fix
[jalview.git] / src / jalview / gui / SeqPanel.java
index 7f4b89b..5eb97e0 100644 (file)
@@ -299,9 +299,6 @@ public class SeqPanel extends JPanel
    */
   void endEditing()
   {
-         
-         System.out.println("seqPanel endEditing " + editCommand);
-
     try
     {
       if (editCommand != null && editCommand.getSize() > 0)
@@ -629,11 +626,7 @@ public class SeqPanel extends JPanel
   @Override
   public void mouseReleased(MouseEvent evt)
   {
-         
-         System.out.println("seqPanel mouse evt release " + evt.isShiftDown() + " " + mouseDragging + " " + editingSeqs);
-
-         
-         boolean didDrag = mouseDragging; // did we come here after a drag
+    boolean didDrag = mouseDragging; // did we come here after a drag
     mouseDragging = false;
     mouseWheelPressed = false;
 
@@ -663,7 +656,6 @@ public class SeqPanel extends JPanel
   @Override
   public void mousePressed(MouseEvent evt)
   {
-         System.out.println("seqPanel mouse evt " + evt.isShiftDown());
     lastMousePress = evt.getPoint();
 
     if (SwingUtilities.isMiddleMouseButton(evt))
@@ -1141,9 +1133,6 @@ public class SeqPanel extends JPanel
           newWidth = av.getCharWidth() + 1;
           av.setCharWidth(newWidth);
         }
-        System.out.println("seqPanel mouse evt " + evt.isShiftDown() + " " + newWidth);
-        
         if (newWidth > 0)
         {
           ap.paintAlignment(false, false);