change method signature to allow caller to test if panel actually scrolled or not
[jalview.git] / src / jalview / gui / AlignViewport.java
index 0536f8d..d07b010 100755 (executable)
@@ -373,6 +373,7 @@ public class AlignViewport implements SelectionSource
     }
 
     wrapAlignment = jalview.bin.Cache.getDefault("WRAP_ALIGNMENT", false);
+    showUnconserved = jalview.bin.Cache.getDefault("SHOW_UNCONSERVED", false);
   }
 
   /**
@@ -2197,5 +2198,13 @@ public class AlignViewport implements SelectionSource
   {
     return showSeqFeaturesHeight; 
   }
-
+  boolean showUnconserved=false;
+  public boolean getShowUnconserved()
+  {
+    return showUnconserved;
+  }
+  public void setShowUnconserved(boolean showunconserved)
+  {
+    showUnconserved=showunconserved;
+  }
 }