Skip to content

Commit 9d2fe69

Browse files
committed
change requestRender condition in DataSourceDIsplay.update
1 parent 2640bd8 commit 9d2fe69

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/engine/Source/DataSources/DataSourceDisplay.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,7 @@ DataSourceDisplay.prototype.update = function (time) {
322322
result = visualizers[x].update(time) && result;
323323
}
324324

325-
// Request a rendering of the scene when the data source
326-
// becomes 'ready' for the first time
327-
if (!this._ready && result) {
325+
if (!result) {
328326
this._scene.requestRender();
329327
}
330328

0 commit comments

Comments
 (0)