diff --git a/src/ol/map.js b/src/ol/map.js index 5223a1ced5..3c68d771b9 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -1022,13 +1022,7 @@ ol.Map.prototype.isRendered = function() { * Render. */ ol.Map.prototype.renderSync = function() { - if (this.animationDelay_.isActive()) { - // pass - } else if (this.freezeRenderingCount_ === 0) { - this.animationDelay_.fire(); - } else { - this.dirty_ = true; - } + this.animationDelay_.fire(); };