Solves issue #1318 : transparent tiledImages get _needsDraw = false in the draw function.

This commit is contained in:
Peter 2017-10-04 16:11:08 -04:00
parent 628cfad52a
commit f64388b038

View File

@ -311,6 +311,10 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
this._updateViewport();
this._midDraw = false;
}
// Images with opacity 0 should not need to be drawn in future. this._needsDraw = false is set in this._updateViewport() for other images.
if (this.opacity === 0) {
this._needsDraw = false;
}
},
/**