Added a new item to the audio menu

This commit is contained in:
Manuel Cortez 2016-06-19 12:54:38 -05:00
parent b278c8cde9
commit dc88d68a6c

View File

@ -33,6 +33,8 @@ class audioMenu(wx.Menu):
self.AppendItem(self.play)
self.library = wx.MenuItem(self, wx.NewId(), _(u"&Add to library"))
self.AppendItem(self.library)
self.move = wx.MenuItem(self, wx.NewId(), _(u"Move to album"))
self.AppendItem(self.move)
class peopleMenu(wx.Menu):
def __init__(self, *args, **kwargs):