From e42bd852746510e342b1cfcebe904724441b5453 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sun, 20 Nov 2022 13:28:43 -0600 Subject: [PATCH] Fixed shortcut to open followers timelines in the dialog --- src/wxUI/dialogs/mastodon/userTimeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/dialogs/mastodon/userTimeline.py b/src/wxUI/dialogs/mastodon/userTimeline.py index 85453a81..e713662b 100644 --- a/src/wxUI/dialogs/mastodon/userTimeline.py +++ b/src/wxUI/dialogs/mastodon/userTimeline.py @@ -18,7 +18,7 @@ class UserTimeline(wx.Dialog): label2 = wx.StaticText(panel, -1, _(u"Buffer type")) self.posts = wx.RadioButton(panel, -1, _(u"&Posts"), style=wx.RB_GROUP) self.followers = wx.RadioButton(panel, -1, _(u"&Followers")) - self.following = wx.RadioButton(panel, -1, _(u"F&ollowing")) + self.following = wx.RadioButton(panel, -1, _("Fo&llowing")) self.setup_default(default) hSizer = wx.BoxSizer(wx.HORIZONTAL) hSizer.Add(label2, 0, wx.ALL, 5)