This closes #1767, change struct field tabRatio date type to float64

This commit is contained in:
xuri 2023-12-22 20:49:14 +08:00
parent 37e2d946be
commit e998c374ac
No known key found for this signature in database
GPG Key ID: BA5E5BB1C948EDF7
1 changed files with 37 additions and 37 deletions

View File

@ -151,7 +151,7 @@ type xlsxWorkBookView struct {
YWindow string `xml:"yWindow,attr,omitempty"`
WindowWidth int `xml:"windowWidth,attr,omitempty"`
WindowHeight int `xml:"windowHeight,attr,omitempty"`
TabRatio int `xml:"tabRatio,attr,omitempty"`
TabRatio float64 `xml:"tabRatio,attr,omitempty"`
FirstSheet int `xml:"firstSheet,attr,omitempty"`
ActiveTab int `xml:"activeTab,attr,omitempty"`
AutoFilterDateGrouping *bool `xml:"autoFilterDateGrouping,attr"`
@ -368,7 +368,7 @@ type xlsxCustomWorkbookView struct {
ShowSheetTabs *bool `xml:"showSheetTabs,attr"`
ShowStatusbar *bool `xml:"showStatusbar,attr"`
ShowVerticalScroll *bool `xml:"showVerticalScroll,attr"`
TabRatio *int `xml:"tabRatio,attr"`
TabRatio *float64 `xml:"tabRatio,attr"`
WindowHeight *int `xml:"windowHeight,attr"`
WindowWidth *int `xml:"windowWidth,attr"`
XWindow *int `xml:"xWindow,attr"`