From f0a75cf4a7b12e04d19743b64bead7750cd3c85c Mon Sep 17 00:00:00 2001 From: makeworld Date: Sun, 21 Jun 2020 23:56:25 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20bottomBar=20is=20not=20in=20focu?= =?UTF-8?q?s=20when=20loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + display/private.go | 2 ++ 2 files changed, 3 insertions(+) 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)