mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-01 04:46:11 +03:00
Remove offset for transparent tile.
This commit is contained in:
parent
f509f43472
commit
bbe34e0816
1 changed files with 4 additions and 4 deletions
|
@ -356,10 +356,10 @@ $.Tile.prototype = {
|
|||
//clearing only the inside of the rectangle occupied
|
||||
//by the png prevents edge flikering
|
||||
context.clearRect(
|
||||
position.x + 1,
|
||||
position.y + 1,
|
||||
size.x - 1,
|
||||
size.y - 1
|
||||
position.x,
|
||||
position.y,
|
||||
size.x,
|
||||
size.y
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue