Merge pull request #616 from ajspera/clear-type-fix

Fix: layer clear bounds should be optional
This commit is contained in:
Anton Lavrenov 2019-03-21 19:37:11 -05:00 committed by GitHub
commit e5397f270d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -181,7 +181,7 @@ export class Layer extends BaseLayer {
Container.prototype.drawHit.call(this, canvas, top);
return this;
}
clear(bounds) {
clear(bounds?) {
BaseLayer.prototype.clear.call(this, bounds);
this.getHitCanvas()
.getContext()