JAL-1553 merge commit
authorCharles Ofoegbu <tcnofoegbu@dundee.ac.uk>
Sat, 10 Jan 2015 14:38:01 +0000 (14:38 +0000)
committerCharles Ofoegbu <tcnofoegbu@dundee.ac.uk>
Sat, 10 Jan 2015 14:38:01 +0000 (14:38 +0000)
1  2 
src/jalview/gui/AlignFrame.java
src/jalview/gui/AlignViewport.java

Simple merge
@@@ -138,6 -148,10 +138,9 @@@ public class AlignViewport extends Alig
    Color textColour = Color.black;
  
    Color textColour2 = Color.white;
 -
+   private boolean rightAlignIds = false;
+   private AnnotationColumnSelection currentAnnotationColumnSelectionState;
    /**
     * Creates a new AlignViewport object.
     * 
    {
      this.showAutocalculatedAbove = showAutocalculatedAbove;
    }
++
+   public boolean isShowAnnotation()
+   {
 -    return showAnnotation;
++    return super.isShowAnnotation();
+   }
+   public boolean isRightAlignIds()
+   {
+     return rightAlignIds;
+   }
+   public void setRightAlignIds(boolean rightAlignIds)
+   {
+     this.rightAlignIds = rightAlignIds;
+   }
+   public AnnotationColumnSelection getCurrentAnnotationColumnSelectionState()
+   {
+     return currentAnnotationColumnSelectionState;
+   }
+   public void setCurrentAnnotationColumnSelectionState(
+           AnnotationColumnSelection currentAnnotationColumnSelectionState)
+   {
+     this.currentAnnotationColumnSelectionState = currentAnnotationColumnSelectionState;
+   }
  }