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: '░', }