zepio/utils/debug-shortcut.js

10 lines
308 B
JavaScript
Raw Normal View History

2018-11-26 12:08:52 -08:00
// @flow
2018-11-26 12:19:12 -08:00
/* eslint-disable import/no-extraneous-dependencies */
import { globalShortcut } from 'electron';
2018-11-26 12:08:52 -08:00
2018-11-26 12:19:12 -08:00
export const registerDebugShortcut = (app: Object, mainWindow: Object) => globalShortcut.register('CommandOrControl+Option+B', () => {
app.dock.show();
mainWindow.webContents.openDevTools();
});