diff options
| author | xuri <xuri.me@gmail.com> | 2019-09-30 21:05:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-30 21:05:31 +0800 |
| commit | a00ba75f0f294ce04bfe8d25703d13cd27d6284f (patch) | |
| tree | 365adbcd9b2f1360b78c597514444ae1bd2cac86 /xmlWorksheet.go | |
| parent | eb520ae27757d4bca276fa2894bf461d75df9b37 (diff) | |
| parent | babfeb6b57ad3e63f68f5e031869efc54c9cfe0b (diff) | |
Fix #493 Merge pull request #495 from jaby/493-ShowZeros
Add missing ShowZeros SheetViewOption implementation
Diffstat (limited to 'xmlWorksheet.go')
| -rw-r--r-- | xmlWorksheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index fa07974..c78d3ef 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -167,7 +167,7 @@ type xlsxSheetView struct { ShowFormulas bool `xml:"showFormulas,attr,omitempty"` ShowGridLines *bool `xml:"showGridLines,attr"` ShowRowColHeaders *bool `xml:"showRowColHeaders,attr"` - ShowZeros bool `xml:"showZeros,attr,omitempty"` + ShowZeros *bool `xml:"showZeros,attr,omitempty"` RightToLeft bool `xml:"rightToLeft,attr,omitempty"` TabSelected bool `xml:"tabSelected,attr,omitempty"` ShowWhiteSpace *bool `xml:"showWhiteSpace,attr"` |
