diff options
Diffstat (limited to 'col.go')
-rw-r--r-- | col.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ func (f *File) GetColOutlineLevel(sheet, col string) (uint8, error) { for c := range xlsx.Cols.Col { colData := &xlsx.Cols.Col[c] if colData.Min <= colNum && colNum <= colData.Max { - level = colData.OutlineLevel + 1 + level = colData.OutlineLevel } } return level, err |