From 90c64bf75ab34a3f3cf5c0f23d596d86ba88020d Mon Sep 17 00:00:00 2001 From: nakabonne Date: Sun, 20 Sep 2020 16:13:31 +0900 Subject: [PATCH] Use fill instead of border --- gui/widgets.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/widgets.go b/gui/widgets.go index f0f6727..133928a 100644 --- a/gui/widgets.go +++ b/gui/widgets.go @@ -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),