browser: use "p" instead of "H" for going back

This commit is contained in:
dece 2021-02-26 15:37:15 +01:00
parent 70cd3f6557
commit e7ef91ed9f

View file

@ -102,7 +102,7 @@ class Browser:
self.scroll_page_vertically(-self.page_pad_size[0])
elif char == ord("o"):
self.quick_command("open")
elif char == ord("H"):
elif char == ord("p"):
self.go_back()
elif char == ord("g"):
char = self.screen.getch()