Skip to content

Commit

Permalink
Overlay tiles with a subset do not have more detail.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Dec 3, 2024
1 parent f2d3547 commit d1cb472
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,11 @@ QuadtreeRasterOverlayTileProvider::combineImages(
continue;
}

result.moreDetailAvailable |= loaded.moreDetailAvailable;
// Tiles with a subset inherently have no more detail available (otherwise
// we wouldn't need the subset).
if (!it->subset) {
result.moreDetailAvailable |= loaded.moreDetailAvailable;
}

blitImage(
target,
Expand Down

0 comments on commit d1cb472

Please sign in to comment.