From: jprocter Date: Wed, 5 Jan 2011 15:36:05 +0000 (+0000) Subject: graphThreshold not being copied by constructor X-Git-Tag: Release_2_7~331 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=63cbb86a2d771d2d99d2f38a7b6cf639bf5c19c8;p=jalview.git graphThreshold not being copied by constructor --- 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); }