HOT FIX: Solves issue where input bar disappears on empty search input

This commit is contained in:
Brian Evans 2019-11-13 11:25:13 -08:00
parent a06ad4ee8d
commit 0b63b85a1a
1 changed files with 2 additions and 0 deletions

View File

@ -641,6 +641,8 @@ func (c *client) search(query, url, question string) {
c.DrawMessage()
return
} else if strings.TrimSpace(entry) == "" {
c.ClearMessage()
c.DrawMessage()
return
}
} else {