Changed [L]inks key to L[i]nks so that L key is CURSOR RIGHT

This commit is contained in:
Daniel Schwarz 2023-07-06 07:31:43 -04:00
parent 3903307e72
commit f292468fb6
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ class Timeline(urwid.Columns):
"[F]avourite", "[F]avourite",
"[V]iew", "[V]iew",
"[T]hread" if not self.is_thread else "", "[T]hread" if not self.is_thread else "",
"[L]inks", "L[i]nks",
"[R]eply", "[R]eply",
"[P]oll" if poll and not poll["expired"] else "", "[P]oll" if poll and not poll["expired"] else "",
"So[u]rce", "So[u]rce",
@ -218,7 +218,7 @@ class Timeline(urwid.Columns):
self.tui.async_toggle_bookmark(self, status) self.tui.async_toggle_bookmark(self, status)
return return
if key in ("l", "L"): if key in ("i", "I"):
self.tui.show_links(status) self.tui.show_links(status)
return return