fixed an error in community buffers

This commit is contained in:
Manuel Cortez 2019-01-24 13:30:40 -06:00
parent ab0d34599f
commit 9230bd8115

View File

@ -57,7 +57,7 @@ class communityTab(feedTab):
def create_post_buttons(self):
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
self.load = wx.Button(self.postBox.GetBoxSizer(), wx.NewId(), _("Load community"))
self.load = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Load community"))
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
self.postBox.Add(self.load, 0, wx.ALL, 5)
self.postBox.Add(self.post, 0, wx.ALL, 5)