From 9230bd8115465806e4d50a08643ee7c527c61416 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Thu, 24 Jan 2019 13:30:40 -0600 Subject: [PATCH] fixed an error in community buffers --- src/wxUI/tabs/home.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/tabs/home.py b/src/wxUI/tabs/home.py index 053af67..d2060fb 100644 --- a/src/wxUI/tabs/home.py +++ b/src/wxUI/tabs/home.py @@ -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)