Skip to content

Commit

Permalink
Merge pull request #6281 from AnalyticalGraphicsInc/zoom-to-fix
Browse files Browse the repository at this point in the history
Fix zoom to dynamic geometry
  • Loading branch information
Hannah authored Feb 28, 2018
2 parents 2dacf07 + 984f2f4 commit 087bda0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Change Log
* Fixed issue where `CESIUM_BASE_URL` wouldn't work without a trailing `/`. [#6225](https://github.com/AnalyticalGraphicsInc/cesium/issues/6225)
* Fixed coloring for polyline entities with a dynamic color for the depth fail material [#6245](https://github.com/AnalyticalGraphicsInc/cesium/pull/6245)
* Fixed an issue causing the Bing Maps key to be sent unnecessarily with every tile request. [#6250](https://github.com/AnalyticalGraphicsInc/cesium/pull/6250)
* Fixed bug with zooming to dynamic geometry. [#6269](https://github.com/AnalyticalGraphicsInc/cesium/issues/6269)
* Fixed documentation issue for the `Cesium.Math` class. [#6233](https://github.com/AnalyticalGraphicsInc/cesium/issues/6233)

### 1.42.1 - 2018-02-01
Expand Down
5 changes: 4 additions & 1 deletion Source/Scene/Scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -3064,13 +3064,16 @@ define([
// Render
this._preRender.raiseEvent(this, time);
tryAndCatchError(this, time, render);
this._postRender.raiseEvent(this, time);

RequestScheduler.update();
}

updateDebugShowFramesPerSecond(this, shouldRender);
callAfterRenderFunctions(this);

if (shouldRender) {
this._postRender.raiseEvent(this, time);
}
};

/**
Expand Down

0 comments on commit 087bda0

Please sign in to comment.