From: jprocter Date: Thu, 19 Apr 2007 15:00:52 +0000 (+0000) Subject: padGaps flag in copy constructor X-Git-Tag: Release_2_3~210 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=0896dd47a711b260d6f79e1e18d1bb8aa822e111;p=jalview.git padGaps flag in copy constructor --- diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index 0f2a423..ef9632b 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -281,6 +281,7 @@ public class AlignmentAnnotation this.hasText = annotation.hasText; this.height = annotation.height; this.label = annotation.label; + this.padGaps = annotation.padGaps; if (threshold!=null) { threshold = new GraphLine(annotation.threshold); }