From a2e0a2e72e6468cef023216edbc4847e4b2043ca Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 18 Nov 2020 14:06:05 -0500 Subject: [PATCH] Remove initial width argument; add default width --- progress/progress.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index ef24bf1..b918136 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -29,13 +29,13 @@ type Model struct { } // NewModel returns a model with default values. -func NewModel(size int) *Model { +func NewModel() Model { startColor, _ := colorful.Hex("#00dbde") endColor, _ := colorful.Hex("#fc00ff") - return &Model{ + return Model{ StartColor: startColor, EndColor: endColor, - Width: size, + Width: 40, FilamentSymbol: '█', EmptySymbol: '░', }