Skip to content

Commit

Permalink
Fixes #3061
Browse files Browse the repository at this point in the history
  • Loading branch information
hpinkos committed May 8, 2018
1 parent 404f286 commit 9244099
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Change Log

##### Fixes :wrench:
* Fixed a bug causing custom TilingScheme classes to not be able to use a GeographicProjection. [#6524](https://github.com/AnalyticalGraphicsInc/cesium/pull/6524)
* Fixed race condition causing intermittent crash when changing geometry show value [#3061](https://github.com/AnalyticalGraphicsInc/cesium/issues/3061)

### 1.45 - 2018-05-01

Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGeometryColorBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGeometryPerMaterialBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
return this.createPrimitive;
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGroundGeometryColorBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticOutlineGeometryBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down

0 comments on commit 9244099

Please sign in to comment.