Skip to content

Commit

Permalink
fix/bug-71345 (#317)
Browse files Browse the repository at this point in the history
[se] Fix bug 71345
Co-authored-by: GoshaZotov <[email protected]>
Co-committed-by: GoshaZotov <[email protected]>
  • Loading branch information
GoshaZotov committed Nov 8, 2024
1 parent 0311613 commit 9acb651
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cell/view/WorksheetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -16494,6 +16494,14 @@
t.workbook.checkScrollRtl(val);
if (t.objectRender) {
t.objectRender.updateDrawingsTransform({target: c_oTargetType.ColumnResize, col: 0});
let drawings = t.objectRender.controller.getDrawingObjects();
for (var i = 0; i < drawings.length; ++i) {
if (!drawings[i].group) {
AscFormat.CheckSpPrXfrm3(drawings[i], true);
} else {
AscFormat.CheckSpPrXfrm(drawings[i], true);
}
}
}
t.model.workbook.handlers.trigger("asc_onHideMathTrack");
t.model.workbook.handlers.trigger("asc_onHideSpecialPasteOptions");
Expand Down

0 comments on commit 9acb651

Please sign in to comment.