Support DeleteTrayMenuByID

This commit is contained in:
Lea Anthony
2021-02-24 21:49:55 +11:00
parent 13939d3d6b
commit 53db687a26
10 changed files with 56 additions and 2 deletions

View File

@@ -208,3 +208,7 @@ func (c *Client) UpdateTrayMenuLabel(JSON string) {
func (c *Client) UpdateContextMenu(contextMenuJSON string) {
C.UpdateContextMenu(c.app.app, c.app.string2CString(contextMenuJSON))
}
func (c *Client) DeleteTrayMenuByID(id string) {
C.DeleteTrayMenuByID(c.app.app, c.app.string2CString(id))
}