From 63cbb86a2d771d2d99d2f38a7b6cf639bf5c19c8 Mon Sep 17 00:00:00 2001 From: jprocter Date: Wed, 5 Jan 2011 15:36:05 +0000 Subject: [PATCH] graphThreshold not being copied by constructor --- src/jalview/datamodel/AlignmentAnnotation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index bd5bfcf..236e8ee 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -380,7 +380,7 @@ public class AlignmentAnnotation { this.score = annotation.score; } - if (threshold != null) + if (annotation.threshold != null) { threshold = new GraphLine(annotation.threshold); } -- 1.7.10.2