Skip to content

Commit

Permalink
Merge branch 'release/33.x'
Browse files Browse the repository at this point in the history
* release/33.x:
  #4999 - Chain layers not rendered
  • Loading branch information
reckart committed Aug 17, 2024
2 parents c4d23c0 + ce50849 commit cf93467
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public void render(RenderRequest aRequest, List<AnnotationFeature> aFeatures,
var nextLinkFs = (AnnotationFS) linkFs.getFeatureValue(linkNext);

// Is link after window? If yes, we can skip the rest of the chain
if (linkFs.getBegin() >= windowBegin) {
if (linkFs.getBegin() >= windowEnd) {
break; // Go to next chain
}

Expand Down

0 comments on commit cf93467

Please sign in to comment.