Added basic photo uploader in wall posts. Description is not supported

This commit is contained in:
2016-04-11 11:48:35 -05:00
parent c7874759b1
commit 64b4b5573a
7 changed files with 109 additions and 44 deletions

View File

@@ -52,3 +52,9 @@ class toolsMenu(wx.Menu):
self.AppendItem(self.translate)
self.CheckSpelling = wx.MenuItem(self, -1, _(u"Check Spelling"))
self.AppendItem(self.CheckSpelling)
class attachMenu(wx.Menu):
def __init__(self):
super(attachMenu, self).__init__()
self.photo = wx.MenuItem(self, wx.NewId(), _(u"Picture"))
self.AppendItem(self.photo)