Added 'keep as follower' for friendship requests (needs testing)

This commit is contained in:
2018-12-10 17:52:01 -06:00
parent 52f892f35f
commit 641921537b
2 changed files with 25 additions and 3 deletions

View File

@@ -57,6 +57,8 @@ class peopleMenu(wx.Menu):
self.Append(self.accept)
self.decline = wx.MenuItem(self, wx.NewId(), _(u"Decline"))
self.Append(self.decline)
self.keep_as_follower = wx.MenuItem(self, wx.NewId(), _(u"Keep as follower"))
self.Append(self.keep_as_follower)
class commentMenu(wx.Menu):
def __init__(self, *args, **kwargs):