Skip to content

Commit

Permalink
fix lack of result num
Browse files Browse the repository at this point in the history
  • Loading branch information
陈遇文 committed May 19, 2023
1 parent bf52743 commit 2de0fdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ var DefaultNumFmtText = NewDefaultStyle("numFmtText", numFmtText)
var DefaultLocked = NewDefaultStyle("default-locked", locked)
var DefaultNoLocked = NewDefaultStyle("default-no-locked", noLocked)

var locked = &excelize.Style{Protection: &excelize.Protection{Locked: true}}
var noLocked = &excelize.Style{Protection: &excelize.Protection{Locked: false}}
var locked = &excelize.Style{Protection: &excelize.Protection{Locked: true}, NumFmt: 49}
var noLocked = &excelize.Style{Protection: &excelize.Protection{Locked: false}, NumFmt: 49}
var numFmtText = &excelize.Style{NumFmt: 49}
var redFont = &excelize.Style{
Font: &excelize.Font{
Expand Down

0 comments on commit 2de0fdd

Please sign in to comment.