X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAlignViewport.java;h=b8f575f56f0729d65e9d32de1815b7de8fa94884;hb=c03d2649512cdc491a46dda1d1370273241b5253;hp=29d936f0f02d063cebaf25a32f7999e7cc1d534b;hpb=79055a2b32dc168ce6fb0b9de366007945d51254;p=jalview.git diff --git a/src/jalview/gui/AlignViewport.java b/src/jalview/gui/AlignViewport.java index 29d936f..b8f575f 100644 --- a/src/jalview/gui/AlignViewport.java +++ b/src/jalview/gui/AlignViewport.java @@ -140,7 +140,7 @@ public class AlignViewport extends AlignmentViewport implements Color textColour2 = Color.white; private boolean rightAlignIds = false; - private AnnotationColumnChooser currentAnnotationColumnSelectionState; + private AnnotationColumnChooser annotationColumnSelectionState; /** * Creates a new AlignViewport object. * @@ -1251,14 +1251,14 @@ public class AlignViewport extends AlignmentViewport implements this.rightAlignIds = rightAlignIds; } - public AnnotationColumnChooser getCurrentAnnotationColumnSelectionState() + public AnnotationColumnChooser getAnnotationColumnSelectionState() { - return currentAnnotationColumnSelectionState; + return annotationColumnSelectionState; } - public void setCurrentAnnotationColumnSelectionState( + public void setAnnotationColumnSelectionState( AnnotationColumnChooser currentAnnotationColumnSelectionState) { - this.currentAnnotationColumnSelectionState = currentAnnotationColumnSelectionState; + this.annotationColumnSelectionState = currentAnnotationColumnSelectionState; } }