1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-15 19:15:24 +00:00

🐛 bottomBar is not in focus when loading

This commit is contained in:
makeworld 2020-06-21 23:56:25 -04:00
parent db69646dbd
commit f0a75cf4a7
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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)