Skip to content

Commit

Permalink
Merge pull request #557 from girder/frame-compositing
Browse files Browse the repository at this point in the history
Fix an issue with frame compositing and partial tiles.
  • Loading branch information
manthey authored Feb 26, 2021
2 parents 122d3f3 + 1d1513b commit c707e10
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions large_image/tilesource/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1373,6 +1373,7 @@ def _applyStyle(self, image, style, x, y, z, frame=None):
self._classkey = self._classkey + '__unstyled'
try:
image = self.getTile(x, y, z, frame=frame, numpyAllowed=True)
image = image[:mainImage.shape[0], :mainImage.shape[1], :mainImage.shape[2]]
finally:
del self._skipStyle
self._classkey = classkey
Expand Down

0 comments on commit c707e10

Please sign in to comment.