From: jprocter Date: Thu, 26 Apr 2007 15:02:37 +0000 (+0000) Subject: score and visible copy construction X-Git-Tag: Release_2_3~163 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=ed3ef4a5d351592f978b6d7e793e70de6ad247ca;p=jalview.git score and visible copy construction --- diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index d3d25d9..acb02b1 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -306,6 +306,11 @@ Loading... this.height = annotation.height; this.label = annotation.label; this.padGaps = annotation.padGaps; + this.visible = annotation.visible; + if (this.hasScore = annotation.hasScore) + { + this.score = annotation.score; + } if (threshold!=null) { threshold = new GraphLine(annotation.threshold); }