From 74234476ab25559098829a96b4977939d7725d35 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Mon, 20 May 2019 21:32:51 -0500 Subject: [PATCH] Updated button label in group feed 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 784031a..43b5b05 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.GetStaticBox(), wx.NewId(), _("Load buffer")) - self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post")) + self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post in group")) self.postBox.Add(self.load, 0, wx.ALL, 5) self.postBox.Add(self.post, 0, wx.ALL, 5)