Commit 00af611c authored by 神楽坂玲奈's avatar 神楽坂玲奈

tray

parent 354a62f4
...@@ -44,7 +44,7 @@ const shouldQuit = app.makeSingleInstance((commandLine, workingDirectory) => { ...@@ -44,7 +44,7 @@ const shouldQuit = app.makeSingleInstance((commandLine, workingDirectory) => {
if (mainWindow.isMinimized()) { if (mainWindow.isMinimized()) {
mainWindow.restore() mainWindow.restore()
} }
if(!mainWindow.isVisible()){ if (!mainWindow.isVisible()) {
mainWindow.show(); mainWindow.show();
} }
mainWindow.focus() mainWindow.focus()
...@@ -172,6 +172,11 @@ function createTray() { ...@@ -172,6 +172,11 @@ function createTray() {
// {label: '游戏', type: 'normal', click: (menuItem, browserWindow, event)=>{}}, // {label: '游戏', type: 'normal', click: (menuItem, browserWindow, event)=>{}},
// {label: '社区', type: 'normal', click: (menuItem, browserWindow, event)=>{}}, // {label: '社区', type: 'normal', click: (menuItem, browserWindow, event)=>{}},
// {label: '切换账号', type: 'normal', click: (menuItem, browserWindow, event)=>{}}, // {label: '切换账号', type: 'normal', click: (menuItem, browserWindow, event)=>{}},
{
label: '显示主界面', type: 'normal', click: () => {
mainWindow.isVisible() ? mainWindow.hide() : mainWindow.show();
}
},
{ {
label: '退出', type: 'normal', click: app.quit label: '退出', type: 'normal', click: app.quit
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment