Changed play to play_pause for avoiding ambiguous situations

This commit is contained in:
Manuel Cortez 2018-02-25 07:15:05 -06:00
parent d08042247a
commit eebd86a987

View File

@ -4,7 +4,7 @@ import wx
class contextMenu(wx.Menu): class contextMenu(wx.Menu):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super(contextMenu, self).__init__(*args, **kwargs) super(contextMenu, self).__init__(*args, **kwargs)
self.play = wx.MenuItem(self, wx.NewId(), _("Play")) self.play = wx.MenuItem(self, wx.NewId(), _("Play/Pause"))
self.Append(self.play) self.Append(self.play)
self.download = wx.MenuItem(self, wx.NewId(), _("Download")) self.download = wx.MenuItem(self, wx.NewId(), _("Download"))
self.Append(self.download) self.Append(self.download)