Fixed typos in mastodon buffer GUI

This commit is contained in:
Manuel Cortez 2022-11-08 12:20:11 -06:00
parent d53decb165
commit b9731a3c75
No known key found for this signature in database
GPG Key ID: 9E0735CA15EFE790

View File

@ -22,12 +22,12 @@ class basePanel(wx.Panel):
self.sizer = wx.BoxSizer(wx.VERTICAL)
self.create_list()
self.toot = wx.Button(self, -1, _("Toot"))
self.retoot = wx.Button(self, -1, _("Retoot"))
self.boost = wx.Button(self, -1, _("Boost"))
self.reply = wx.Button(self, -1, _(u"Reply"))
self.dm = wx.Button(self, -1, _(u"Direct message"))
btnSizer = wx.BoxSizer(wx.HORIZONTAL)
btnSizer.Add(self.tweet, 0, wx.ALL, 5)
btnSizer.Add(self.retweet, 0, wx.ALL, 5)
btnSizer.Add(self.toot, 0, wx.ALL, 5)
btnSizer.Add(self.boost, 0, wx.ALL, 5)
btnSizer.Add(self.reply, 0, wx.ALL, 5)
btnSizer.Add(self.dm, 0, wx.ALL, 5)
self.sizer.Add(btnSizer, 0, wx.ALL, 5)