Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hainm committed Jun 20, 2024
1 parent c678ac9 commit 04246ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/widget_ngl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export
if (this._synced_model_ids.length > 0 && this._ngl_focused == 1) {
for (const mid of this._synced_model_ids) {
const model = await this.model.widget_manager.get_model(mid);
for (const view of Object.values(model.views)) {
for (const view of Object.values(model.views as any[])) {
if (view.uuid != this.uuid) {
view.stage.viewerControls.orient(m);
}
Expand Down

0 comments on commit 04246ec

Please sign in to comment.