summaryrefslogtreecommitdiff
path: root/sheet.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2022-06-21 20:08:47 +0800
committerxuri <xuri.me@gmail.com>2022-06-21 20:08:47 +0800
commit852f211970b47c79cceedd9de934f9aa7520f131 (patch)
tree8a2ac5103cc32dfb3d78b2dbcbb6aa4f913e162f /sheet.go
parent7819cd7fec50513786a5d47c6f11a59cceba541a (diff)
This closes #1257, fix incorrect worksheet header footer fields order
Diffstat (limited to 'sheet.go')
-rw-r--r--sheet.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sheet.go b/sheet.go
index 7b6e5dc..45b724f 100644
--- a/sheet.go
+++ b/sheet.go
@@ -280,7 +280,7 @@ func (f *File) SetActiveSheet(index int) {
for idx, name := range f.GetSheetList() {
ws, err := f.workSheetReader(name)
if err != nil {
- // Chartsheet or dialogsheet
+ // Chartsheet, macrosheet or dialogsheet
return
}
if ws.SheetViews == nil {