You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Workaround: before you modify columns, set up a list of widths. Every time you delete column(s) or insert them, manually mutate this list. At the end, re-set all the widths.
Workaround: make wrapper functions for delete_cols and insert_cols, which shift all the widths in the column_dimensions map manually every time. (ick)
Feels like this bug came about because the implementation uses a mapping instead of a list, so it's "hard"/expensive to update on each column mutation.
Steps to reproduce:
Expected: deleting column(s) adjusts the column_dimensions to match, as in Excel:
Actual: the original column dimensions are retained while the content is shifted:
The text was updated successfully, but these errors were encountered: