Skip to content

Commit

Permalink
[se] Fix bug 72965
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Jan 31, 2025
1 parent d1536b9 commit de9bdf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cell/model/Workbook.js
Original file line number Diff line number Diff line change
Expand Up @@ -3019,10 +3019,6 @@
this.timelineCaches.forEach(function(elem){
elem.initPostOpen(tableIds, sheetIds);
});
//external references
this.externalReferences.forEach(function(elem){
elem && elem.initPostOpen && elem.initPostOpen();
});
//show active if it hidden
var wsActive = this.getActiveWs();
if (wsActive && wsActive.getHidden()) {
Expand All @@ -3032,6 +3028,10 @@
if(!bNoBuildDep){
this.dependencyFormulas.initOpen();
}
//external references
this.externalReferences.forEach(function(elem){
elem && elem.initPostOpen && elem.initPostOpen();
});
if (bSnapshot) {
this.snapshot = this._getSnapshot();
}
Expand Down

0 comments on commit de9bdf6

Please sign in to comment.