Now it's possible to do simple post (plain text only)

This commit is contained in:
Manuel Cortez 2016-02-14 18:53:58 -06:00
parent d018c440f6
commit bc5e76ce1c
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import widgetUtils
class textMessage(widgetUtils.BaseDialog): class textMessage(widgetUtils.BaseDialog):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super(textLimited, self).__init__(parent=None, *args, **kwargs) super(textMessage, self).__init__(parent=None, *args, **kwargs)
def createTextArea(self, message="", text=""): def createTextArea(self, message="", text=""):
self.panel = wx.Panel(self) self.panel = wx.Panel(self)

View File

@ -14,7 +14,7 @@ class homeTab(wx.Panel):
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown) self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
def create_post_buttons(self): def create_post_buttons(self):
self.post = wx.Button(self, -1, _(u"Post in facebook")) self.post = wx.Button(self, -1, _(u"Post"))
self.postBox = wx.BoxSizer(wx.HORIZONTAL) self.postBox = wx.BoxSizer(wx.HORIZONTAL)
self.postBox.Add(self.post, 0, wx.ALL, 5) self.postBox.Add(self.post, 0, wx.ALL, 5)