score and visible copy construction
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index d3d25d9..acb02b1 100755 (executable)
@@ -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);
     }