From 74a73d1c2dba0af11e7b07a8934a36f57c0482d2 Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Sun, 25 Aug 2024 11:27:07 +0200 Subject: [PATCH] Fix shortcut for status links in help --- toot/tui/overlays.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/tui/overlays.py b/toot/tui/overlays.py index b357bd4..287e25b 100644 --- a/toot/tui/overlays.py +++ b/toot/tui/overlays.py @@ -230,7 +230,7 @@ class Help(urwid.Padding): yield urwid.Text(h(" [S] - Show text marked as sensitive")) yield urwid.Text(h(" [M] - Show status media")) yield urwid.Text(h(" [T] - Show status thread (replies)")) - yield urwid.Text(h(" [L] - Show the status links")) + yield urwid.Text(h(" [I] - Show the status links")) yield urwid.Text(h(" [U] - Show the status data in JSON as received from the server")) yield urwid.Text(h(" [V] - Open status in default browser")) yield urwid.Text(h(" [Y] - Copy status to clipboard"))