diff options
author | Dokiy <49900744+Dokiys@users.noreply.github.com> | 2022-01-14 00:28:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 00:28:31 +0800 |
commit | 67127883dddf6a923d12231da8b089861bcca28c (patch) | |
tree | ed15341450f54ce976d028b30b981455392f45d2 /adjust.go | |
parent | b96329cc88b87da25a4389f1d4d5ad08cd40605a (diff) |
Fix adjustMergeCells not modifies cell rect (#1118)
Diffstat (limited to 'adjust.go')
-rw-r--r-- | adjust.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -226,6 +226,7 @@ func (f *File) adjustMergeCells(ws *xlsxWorksheet, dir adjustDirection, num, off i-- continue } + areaData.rect = []int{x1, y1, x2, y2} if areaData.Ref, err = f.coordinatesToAreaRef([]int{x1, y1, x2, y2}); err != nil { return err } |