mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-04-06 07:03:43 +03:00
Remove initial width argument; add default width
This commit is contained in:
parent
3dea7d036e
commit
a2e0a2e72e
@ -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: '░',
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user