Now it's possible to do simple post (plain text only)
This commit is contained in:
parent
d018c440f6
commit
bc5e76ce1c
@ -4,7 +4,7 @@ import widgetUtils
|
||||
|
||||
class textMessage(widgetUtils.BaseDialog):
|
||||
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=""):
|
||||
self.panel = wx.Panel(self)
|
||||
|
@ -14,7 +14,7 @@ class homeTab(wx.Panel):
|
||||
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
||||
|
||||
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.Add(self.post, 0, wx.ALL, 5)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user