We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6dfba9 commit be8fec1Copy full SHA for be8fec1
packages/node_modules/overmind-devtools/src/main.js
@@ -120,6 +120,7 @@ function createWindow() {
120
}
121
122
mainWindow.on('closed', () => app.quit())
123
+ app.on('activate', () => { mainWindow.show() })
124
electron.ipcMain.on('newPort', (_, port) => {
125
storage.set('port', port, () => {
126
startDevtoolBackend().then(openDevtools)
@@ -143,6 +144,13 @@ function createWindow() {
143
144
mainWindow.openDevTools()
145
},
146
147
+ {
148
+ label: 'Hide',
149
+ click() {
150
+ mainWindow.hide()
151
+ },
152
+ accelerator: 'CmdOrCtrl+H',
153
154
{
155
label: 'Learn More',
156
click() {
0 commit comments