*/
void endEditing()
{
-
- System.out.println("seqPanel endEditing " + editCommand);
-
try
{
if (editCommand != null && editCommand.getSize() > 0)
@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;
@Override
public void mousePressed(MouseEvent evt)
{
- System.out.println("seqPanel mouse evt " + evt.isShiftDown());
lastMousePress = evt.getPoint();
if (SwingUtilities.isMiddleMouseButton(evt))
newWidth = av.getCharWidth() + 1;
av.setCharWidth(newWidth);
}
-
- System.out.println("seqPanel mouse evt " + evt.isShiftDown() + " " + newWidth);
-
if (newWidth > 0)
{
ap.paintAlignment(false, false);