Skip to content

Commit

Permalink
Merge pull request '[se] Fix bug 73025' (#624) from fix/bug-73025 int…
Browse files Browse the repository at this point in the history
  • Loading branch information
K0R0L committed Feb 2, 2025
2 parents c923081 + 188c70a commit 3eb6aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cell/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1682,7 +1682,7 @@ var editor;
//возвращаю инфомарцию об активном листе, который печатаем
var indexActiveWs = curPage && curPage.indexWorksheet;
if (indexActiveWs === undefined) {
indexActiveWs = this.wbModel.getActive();
indexActiveWs = null !== this.wb.printPreviewState.realActiveSheet ? this.wb.printPreviewState.realActiveSheet : this.wbModel.getActive();
}
this.handlers.trigger("asc_onPrintPreviewSheetChanged", indexActiveWs);
this.handlers.trigger("asc_onPrintPreviewPageChanged", index);
Expand Down

0 comments on commit 3eb6aa3

Please sign in to comment.