mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-18 08:31:00 +00:00
Merge 1d51b72785
into 481cbef2bf
This commit is contained in:
commit
55224075b6
1 changed files with 5 additions and 2 deletions
|
@ -709,8 +709,7 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le
|
|||
);
|
||||
|
||||
if ( tile.loaded ) {
|
||||
|
||||
drawer.updateAgain = blendTile(
|
||||
var needsUpdate = blendTile(
|
||||
drawer,
|
||||
tile,
|
||||
x, y,
|
||||
|
@ -718,6 +717,10 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le
|
|||
levelOpacity,
|
||||
currentTime
|
||||
);
|
||||
|
||||
if ( needsUpdate ) {
|
||||
drawer.updateAgain = true;
|
||||
}
|
||||
} else if ( tile.loading ) {
|
||||
// the tile is already in the download queue
|
||||
// thanks josh1093 for finally translating this typo
|
||||
|
|
Loading…
Add table
Reference in a new issue