Changed play to play_pause for avoiding ambiguous situations
This commit is contained in:
parent
d08042247a
commit
eebd86a987
@ -4,7 +4,7 @@ import wx
|
||||
class contextMenu(wx.Menu):
|
||||
def __init__(self, *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.download = wx.MenuItem(self, wx.NewId(), _("Download"))
|
||||
self.Append(self.download)
|
||||
|
Loading…
Reference in New Issue
Block a user