Skip to content

Commit

Permalink
fix assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Dec 24, 2024
1 parent aa0b7cb commit 7b569e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/TilesRendererBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export class TilesRendererBase {
if ( parentTile === null ) {

tile.__depth = 0;
tile.__depthFromRenderedParent = 0;
tile.__depthFromRenderedParent = ( tile.__hasRenderableContent ? 1 : 0 );
tile.refine = tile.refine || 'REPLACE';

} else {
Expand Down

0 comments on commit 7b569e7

Please sign in to comment.