Update tray.js (#193)

master
TestGifts 4 years ago committed by GitHub
parent 236075a1f8
commit 96a90eea25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,20 @@ export function createTray(win) {
tray.on("right-click", () => {
const contextMenu = Menu.buildFromTemplate([
{
label: "Quit",
label: "播放/暂停",
click: () => {
win.webContents.send("play");
},
},
{
label: "下一首",
accelerator: "CmdOrCtrl+Right",
click: () => {
win.webContents.send("next");
},
},
{
label: "退出",
click: () => {
app.exit();
},

Loading…
Cancel
Save