Fixed bug in the calculation target cell(row).
The target cell for calclator the height was shifted by 1.
This commit is contained in:
parent
28c02e3aaf
commit
b0acd922ef
2
col.go
2
col.go
|
@ -275,8 +275,8 @@ func (f *File) positionObjectPixels(sheet string, col, row, x1, y1, width, heigh
|
||||||
|
|
||||||
// Subtract the underlying cell heights to find end cell of the object.
|
// Subtract the underlying cell heights to find end cell of the object.
|
||||||
for height >= f.getRowHeight(sheet, rowEnd) {
|
for height >= f.getRowHeight(sheet, rowEnd) {
|
||||||
rowEnd++
|
|
||||||
height -= f.getRowHeight(sheet, rowEnd)
|
height -= f.getRowHeight(sheet, rowEnd)
|
||||||
|
rowEnd++
|
||||||
}
|
}
|
||||||
|
|
||||||
// The end vertices are whatever is left from the width and height.
|
// The end vertices are whatever is left from the width and height.
|
||||||
|
|
Loading…
Reference in New Issue