Skip to content

Commit

Permalink
Merge pull request '[se] Fix bug 72965' (#613) from fix/bug-72965 int…
Browse files Browse the repository at this point in the history
  • Loading branch information
K0R0L committed Feb 2, 2025
2 parents 6692252 + de9bdf6 commit b5f4020
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 b5f4020

Please sign in to comment.