diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ae2268..e9bdccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reset bottom bar on error / invalid URL - Side scrolling doesn't cut off text on the left side (#1) - Mark status code 21 as invalid +- You can't type on the bottom bar as it's loading ## [1.0.0] - 2020-06-18 diff --git a/display/private.go b/display/private.go index 586e9ad..df38f97 100644 --- a/display/private.go +++ b/display/private.go @@ -142,6 +142,8 @@ func setPage(p *structs.Page) { func handleURL(u string) (string, bool) { defer App.Draw() // Just in case + App.SetFocus(tabViews[curTab]) + //logger.Log.Printf("Sent: %s", u) u = normalizeURL(u)