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 21e6fba commit e443fdfCopy full SHA for e443fdf
packages/graphql-playground-electron/src/main/menu.ts
@@ -39,6 +39,21 @@ export const buildTemplate = (
39
click: () => send('Tab', 'Settings'),
40
},
41
{ type: 'separator' },
42
+ {
43
+ label: 'Hide GraphQL Playground',
44
+ accelerator: 'Cmd+H',
45
+ role: 'hide',
46
+ },
47
48
+ label: 'Hide Others',
49
+ accelerator: 'Option+Cmd+H',
50
+ role: 'hideOthers',
51
52
53
+ label: 'Show All',
54
+ role: 'unhide',
55
56
+ { type: 'separator', visible: process.platform === 'darwin' },
57
{
58
label: 'Quit',
59
accelerator: 'CmdOrCtrl+Q',
0 commit comments