revised logic to avoid NPE
authorjprocter <Jim Procter>
Fri, 12 Nov 2010 14:58:13 +0000 (14:58 +0000)
committerjprocter <Jim Procter>
Fri, 12 Nov 2010 14:58:13 +0000 (14:58 +0000)
src/jalview/gui/AnnotationPanel.java

index a7cca2c..01c933a 100755 (executable)
@@ -1376,7 +1376,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
         }
       }
       // draw profile if available
-      if (aa.annotations[column].value != 0 && renderProfile)
+      if (renderProfile && aa.annotations[column].value != 0)
       {
         int profl[] = getProfileFor(aa, column);
         int ht = y1, htn = y2 - y1;// aa.graphHeight;