Fixed shortcut to open followers timelines in the dialog

This commit is contained in:
2022-11-20 13:28:43 -06:00
parent d3914a4e34
commit e42bd85274

View File

@@ -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)