From 7dbf88f221f278075d4ff9e153b21236d0826c33 Mon Sep 17 00:00:00 2001 From: xuri Date: Thu, 29 Jul 2021 00:03:57 +0800 Subject: This closes #971, closes #972 and closes #974 - Escape XML character in the drop list - Fix incorrect character count limit in the drop list - Fix Excel time parse issue in some case - Fix custom number format month parse issue in some case - Fix corrupted file generated caused by concurrency adding pictures --- col.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'col.go') diff --git a/col.go b/col.go index 5171f34..088fac9 100644 --- a/col.go +++ b/col.go @@ -439,10 +439,10 @@ func (f *File) SetColStyle(sheet, columns string, styleID int) error { for col := start; col <= end; col++ { from, _ := CoordinatesToCellName(col, 1) to, _ := CoordinatesToCellName(col, rows) - f.SetCellStyle(sheet, from, to, styleID) + err = f.SetCellStyle(sheet, from, to, styleID) } } - return nil + return err } // SetColWidth provides a function to set the width of a single column or -- cgit v1.2.1