graphThreshold not being copied by constructor
authorjprocter <Jim Procter>
Wed, 5 Jan 2011 15:36:05 +0000 (15:36 +0000)
committerjprocter <Jim Procter>
Wed, 5 Jan 2011 15:36:05 +0000 (15:36 +0000)
src/jalview/datamodel/AlignmentAnnotation.java

index bd5bfcf..236e8ee 100755 (executable)
@@ -380,7 +380,7 @@ public class AlignmentAnnotation
     {
       this.score = annotation.score;
     }
-    if (threshold != null)
+    if (annotation.threshold != null)
     {
       threshold = new GraphLine(annotation.threshold);
     }