JAL-2491 Tweaks to avoid scroll problems at bottom of wrapped alignment
authorkiramt <k.mourao@dundee.ac.uk>
Mon, 8 May 2017 09:47:16 +0000 (10:47 +0100)
committerkiramt <k.mourao@dundee.ac.uk>
Mon, 8 May 2017 09:47:16 +0000 (10:47 +0100)
src/jalview/viewmodel/ViewportRanges.java

index 72155aa..7a526c7 100644 (file)
@@ -103,11 +103,7 @@ public class ViewportRanges extends ViewportProperties
     }
     this.startRes = startres;
 
-    if (endres >= al.getWidth())
-    {
-      endres = al.getWidth() - 1;
-    }
-    else if (endres < 0)
+    if (endres < 0)
     {
       endres = 0;
     }
@@ -287,11 +283,7 @@ public class ViewportRanges extends ViewportProperties
 
   public void scrollToWrappedVisible(int res)
   {
-    if (res < startRes || res > endRes)
-    {
-      setEndSeq(res / getViewportWidth());
-    }
-
+    setStartRes(res);
   }
 
 }