From: Jim Procter Date: Wed, 23 Feb 2022 14:26:35 +0000 (+0000) Subject: JAL-3417 propagate description from AnnotationProvider to the worker X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=09367c49794fc86bd5c26a8cfd47c370863435f6;p=jalview.git JAL-3417 propagate description from AnnotationProvider to the worker --- diff --git a/src/jalview/workers/AnnotationWorker.java b/src/jalview/workers/AnnotationWorker.java index 56361fa..b812c65 100644 --- a/src/jalview/workers/AnnotationWorker.java +++ b/src/jalview/workers/AnnotationWorker.java @@ -93,6 +93,9 @@ class AnnotationWorker extends AlignCalcWorker ann.label, ann.getCalcId(), ann.autoCalculated, ann.sequenceRef, ann.groupRef); + if (ann.description!=null) { + theAnn.description = ann.description; + } theAnn.showAllColLabels = true; theAnn.graph = AlignmentAnnotation.BAR_GRAPH; theAnn.scaleColLabel = true;