From c5b3724015ec1107fe48e6f273a753e05ba87d4d Mon Sep 17 00:00:00 2001 From: Daniel Schwarz Date: Thu, 19 Jan 2023 02:44:16 -0500 Subject: [PATCH] Don't focus newly posted toot This breaks the reading flow. fixes #188 --- toot/tui/app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/toot/tui/app.py b/toot/tui/app.py index 2471b92..ffab49d 100644 --- a/toot/tui/app.py +++ b/toot/tui/app.py @@ -497,9 +497,7 @@ class TUI(urwid.Frame): in_reply_to_id=in_reply_to_id) status = self.make_status(data) - # TODO: instead of this, fetch new items from the timeline? - self.timeline.prepend_status(status) - self.timeline.focus_status(status) + # TODO: fetch new items from the timeline? self.footer.set_message("Status posted {} \\o/".format(status.id)) self.close_overlay()