Remove initial width argument; add default width

This commit is contained in:
Christian Rocha 2020-11-18 14:06:05 -05:00 committed by Christian Rocha
parent 3dea7d036e
commit a2e0a2e72e

View File

@ -29,13 +29,13 @@ type Model struct {
} }
// NewModel returns a model with default values. // NewModel returns a model with default values.
func NewModel(size int) *Model { func NewModel() Model {
startColor, _ := colorful.Hex("#00dbde") startColor, _ := colorful.Hex("#00dbde")
endColor, _ := colorful.Hex("#fc00ff") endColor, _ := colorful.Hex("#fc00ff")
return &Model{ return Model{
StartColor: startColor, StartColor: startColor,
EndColor: endColor, EndColor: endColor,
Width: size, Width: 40,
FilamentSymbol: '█', FilamentSymbol: '█',
EmptySymbol: '░', EmptySymbol: '░',
} }