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

Loading…
Cancel
Save