JAL-1255 don't show 'Right click to add annotations' message in wrapped mode
authorjprocter <jprocter@compbio.dundee.ac.uk>
Fri, 18 Jan 2013 08:01:53 +0000 (08:01 +0000)
committerjprocter <jprocter@compbio.dundee.ac.uk>
Fri, 18 Jan 2013 08:01:53 +0000 (08:01 +0000)
src/jalview/appletgui/AnnotationLabels.java
src/jalview/gui/AnnotationLabels.java

index c85de33..3d54ae1 100755 (executable)
@@ -762,7 +762,7 @@ public class AnnotationLabels extends Panel implements ActionListener,
               dragEvent.getY());
     }
 
-    if ((aa == null) || (aa.length < 1))
+    if (!av.wrapAlignment && ((aa == null) || (aa.length < 1)))
     {
       g.setColor(Color.black);
       g.drawString("Right click", 2, 8);
index 1577477..dd6f190 100755 (executable)
@@ -960,7 +960,7 @@ public class AnnotationLabels extends JPanel implements MouseListener,
               dragEvent.getY() - scrollOffset);
     }
 
-    if ((aa == null) || (aa.length < 1))
+    if (!av.wrapAlignment && ((aa == null) || (aa.length < 1)))
     {
       g.drawString("Right click", 2, 8);
       g.drawString("to add annotation", 2, 18);