diff options
author | xuri <xuri.me@gmail.com> | 2020-12-14 20:56:51 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-12-14 20:56:51 +0800 |
commit | 77978ac68d3808060e58df41ebede4b9f3631641 (patch) | |
tree | a707a5667effddbb3ea4679b6dd055ef7da98877 /picture.go | |
parent | ad79505173302fdd7619288b793497052e25a148 (diff) |
This closes #657 and closes #748, AddChart support custom marker symbol and symbol size, fix AddPicture auto fit failure with multi merged cells
Diffstat (limited to 'picture.go')
-rw-r--r-- | picture.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -605,6 +605,9 @@ func (f *File) drawingResize(sheet string, cell string, width, height float64, f } cellWidth, cellHeight := f.getColWidth(sheet, c), f.getRowHeight(sheet, r) for _, mergeCell := range mergeCells { + if inMergeCell { + continue + } if inMergeCell, err = f.checkCellInArea(cell, mergeCell[0]); err != nil { return } |