Skip to content

Commit

Permalink
Use fill instead of border
Browse files Browse the repository at this point in the history
  • Loading branch information
nakabonne committed Sep 20, 2020
1 parent fc4fde8 commit 90c64bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui/widgets.go
Expand Up @@ -115,9 +115,9 @@ func newText(s string) (*text.Text, error) {
func newTextInput(label, placeHolder string, cells int) (*textinput.TextInput, error) {
return textinput.New(
//textinput.Label(label, cell.FgColor(cell.ColorWhite)),
textinput.Border(linestyle.Double),
textinput.BorderColor(cell.ColorGreen),
textinput.FillColor(cell.ColorDefault),
//textinput.Border(linestyle.Double),
//textinput.BorderColor(cell.ColorGreen),
textinput.FillColor(cell.ColorBlue),
textinput.MaxWidthCells(cells),
textinput.PlaceHolder(placeHolder),
textinput.PlaceHolderColor(cell.ColorDefault),
Expand Down

0 comments on commit 90c64bf

Please sign in to comment.