Revert fuzzy search input bar color to white

This commit is contained in:
Tulir Asokan 2021-08-02 22:35:15 +03:00
parent 6d8b34db09
commit 3510d223b2

View File

@ -58,7 +58,7 @@ func NewFuzzySearchModal(mainView *MainView, width int, height int) *FuzzySearch
fs.results = mauview.NewTextView().SetRegions(true) fs.results = mauview.NewTextView().SetRegions(true)
fs.search = mauview.NewInputArea(). fs.search = mauview.NewInputArea().
SetChangedFunc(fs.changeHandler). SetChangedFunc(fs.changeHandler).
SetTextColor(tcell.ColorDefault). SetTextColor(tcell.ColorWhite).
SetBackgroundColor(tcell.ColorDarkCyan) SetBackgroundColor(tcell.ColorDarkCyan)
fs.search.Focus() fs.search.Focus()